<!--//ロードイメージ
function newImage(arg) {
if (document.images) {
rslt = new Image();
rslt.src = arg;
return rslt;
}
}

function changeImages() {
if (document.images && (preloadFlag == true)) {
for (var i=0; i<changeImages.arguments.length; i+=2) {
document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
}
}
}
var preloadFlag = false;

//プレロードイメージ
function preloadImages() {
if (document.images) {
topics_button_on = newImage("/images/topics_button_on.gif");
biography_button_on = newImage("/images/biography_button_on.gif");
works_button_on = newImage("/images/works_button_on.gif");
discographys_button_on = newImage("/images/discographys_button_on.gif");
livereports_button_on = newImage("/images/livereports_button_on.gif");
links_button_on = newImage("/images/links_button_on.gif");
bbs_button_on = newImage("/images/bbs_button_on.gif");
weblog_button_on = newImage("/images/weblog_button_on.gif");
photolibrary_button_on = newImage("/images/photolibrary_button_on.gif");
contact_button_on = newImage("/images/contact_button_on.gif");
preloadFlag = true;
}
}

//オープンウィンドウ
function OpenWindow( url, width, height, options, name ){
  if(!width) width = 550;
  if(!height) height = 580;
  if(!options) options = "scrollbars=yes,menubar=yes,toolbar=yes,location=yes,status=yes,resizable=yes";
  if(!name) name = "outsideSiteWindow";

  var newWin = window.open( url, name, "width=" + width + ",height=" + height + "," + options );
}
//-->
