
document.write("<STYLE TYPE='text/css'><!--")

//マックだったら（IEもネスケも両方反応）
	if(navigator.appVersion.indexOf("Mac") > 1){
		document.write(".F1{font-size:9px; line-height:115%}")
		document.write(".F2{font-size:10px; line-height:140%}")
		document.write(".F4{font-size:12px; line-height:140%}")
		document.write(".F6{font-size:14px; line-height:115%}")
		document.write(".F10{font-size:18px; line-height:115%}")
	}

//マックじゃなくて（WINの）エクスプローラだったら
	else{
		if(navigator.appName.charAt(0) == "M"){
		document.write(".F1{font-size:10px; line-height:115%}")
		document.write(".F2{font-size:11px; line-height:130%}")
		document.write(".F4{font-size:13px; line-height:130%}")
		document.write(".F6{font-size:15px; line-height:115%}")
		document.write(".F10{font-size:19px; line-height:115%}")
		}

//上記以外は
	else{
		document.write(".F1{font-size:10px; line-height:115%}")
		document.write(".F2{font-size:11px; line-height:130%}")
		document.write(".F4{font-size:13px; line-height:130%}")
		document.write(".F6{font-size:15px; line-height:115%}")
		document.write(".F10{font-size:19px; line-height:115%}")
		}
}

document.write("A:link {color: #FF0000;}");
document.write("A:visited {color: #FF6600;}");
document.write("A:active {color: #FF0000;}");
document.write("A:hover {color: #FF0000;}");
document.write("A {text-decoration:underline;}");

document.write("A.music:link {color: #3399FF;}");
document.write("A.music:visited {color: #99CCFF;}");
document.write("A.music:active {color: #3399FF;}");
document.write("A.music:hover {color: #3399FF;}");
document.write("A.music {text-decoration:underline;}");

document.write(".BLD {font-weight: bold}");
document.write(".orange {color: #FF6600}");
document.write(".yellow {color: #FFFF00}");
document.write(".red {color: #FF0000}");
document.write(".navy {color: #000066}");
document.write(".black {color: #000000}");
document.write(".bluegray {color: #CCCCFF}");

document.write(".margin1 {margin-top: 1px}");
document.write(".margin15 {margin-top: 15px}");
document.write(".margin20 {margin-top: 20px}");
document.write(".margin30 {margin-top: 30px}");
document.write(".leftmargin35 {margin-left: 35px}");
document.write(".leftmargin10 {margin-left: 10px}");
document.write(".leftmargin5 {margin-left: 5px}");
document.write(".rightmargin10 {margin-right: 10px}");
document.write(".bottommargin10 {margin-bottom: 10px}");

document.write("--></STYLE>");

function rolloverOn(imageName,imageType){
	document[imageName].src = imageName + "-on." + imageType;
}

function rolloverOff(imageName,imageType){
	document[imageName].src = imageName + "-off." + imageType;
}

function miniWin(pageURL,winName,winWidth,winHeight)
{
	windowFeatures = "width=" + winWidth + ",height=" + winHeight + ",toolbar=no,locationbar=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes";
	subWin = window.open(pageURL,winName,windowFeatures);
}

//フッター出力
function outputFooter()	{
	document.write("&copy;2002-2010 by WING ENTERTAINMENT GROUP INC. All rights reserved.");
}

