var type=navigator.userAgent.toLowerCase();

<!-- CSS 振り分け-->
if(type.indexOf('mac')==-1) {
	document.write('<link href="./common/win.css" rel=stylesheet type="text/css">');
} else {
	document.write('<link href="./common/mac.css" rel=stylesheet type="text/css">');
}

// <!--余白用テーブル-->
function Spacer(height) {
	document.write('<td width=\"600\" colspan=\"2\" class=\"normal\" height=\"'+height+'\"><br></td>');
}

<!--newWin focus-->
	self.window.focus();

<!--ポップアップウィンドウ-->
	function openpop(page,name,w,h,others){
		var prm="";
		others=""+others;
		if (others.search(/t/i) != -1) {
			prm += ",toolbar=yes";
		}
		if (others.search(/l/i) != -1) {
			prm += ",location=yes";
		}
		if (others.search(/s/i) != -1) {
			prm += ",status=yes";
		}
		if (others.search(/m/i) != -1) {
			prm += ",menubar=yes";
		}
		if (others.search(/b/i) != -1) {
			prm += ",scrollbars=yes";
		}
		if (others.search(/r/i) != -1) {
			prm += ",resizable=yes";
		}
		window.open(page,name,"directories=no,width="+w+",height="+h+prm);
	}

<!--ステータスバー書き変え関数-->
	function stword(word){
		window.status = word;
		return true;
	}

<!--画像専用ポップアップウィンドウ-->
function imagepop(img,name,ttl,w,h,alt,others){
	var prm="";
	others=""+others;
	if (others.search(/t/i) != -1) {
		prm += ",toolbar=yes";
	}
	if (others.search(/l/i) != -1) {
		prm += ",location=yes";
	}
	if (others.search(/s/i) != -1) {
		prm += ",status=yes";
	}
		if (others.search(/m/i) != -1) {
		prm += ",menubar=yes";
	}
	if (others.search(/b/i) != -1) {
		prm += ",scrollbars=yes";
	}
	if (others.search(/r/i) != -1) {
		prm += ",resizable=yes";
	}
	if (alt != null) {
	alt = "alt="+alt;
	}
	var win=window.open("",name,"directories=no,width="+w+",height="+h+prm);
	win.document.open("text/html", "replace");
	win.document.write('<html><head><title>'+ttl+'</title></head>');
	win.document.write('<body marginwidth="0" marginheight="0" style="margin:0px;">')
	win.document.write('<a href="JavaScript:window.close();"><img src="'+img+'" '+alt+' border="0"></a></body></html>');
	win.document.close();
}

function img_c(){
	img10=new Image();
	img10.src="image/menu_about_off.gif";
	img11=new Image();
	img11.src="image/menu_about_on.gif";
	img20=new Image();
	img20.src="image/menu_discography_off.gif";
	img21=new Image();
	img21.src="image/menu_discography_on.gif";
	img30=new Image();
	img30.src="image/menu_information_off.gif";
	img31=new Image();
	img31.src="image/menu_information_on.gif";
	img40=new Image();
	img40.src="image/menu_report_off.gif";
	img41=new Image();
	img41.src="image/menu_report_on.gif";
	img50=new Image();
	img50.src="image/menu_bbs_off.gif";
	img51=new Image();
	img51.src="image/menu_bbs_on.gif";
	img60=new Image();
	img60.src="image/menu_mail_off.gif";
	img61=new Image();
	img61.src="image/menu_mail_on.gif";
}


