// JavaScript Document
info = new Array();
url = new Array();
icon = new Array();

document.writeln("<style type='text/css'><!--")
if (navigator.appVersion.indexOf("Win")!=-1) {
  document.write(".f10n {font-size: 11px !important; }");
  document.write(".f10m {font-size: 11px !important; }");
  document.write(".f10r {font-size: 11px !important; }");
  document.write(".f10 {font-size: 11px !important; }");
}
document.writeln("--></style>");

function MM_openBrWindow(theURL,winName,WW,WH,SCB) { //v2.0
  var Features = 'status=no,directories=no,menubar=no,resizable=no,toolbar=no,scrollbars=' + SCB + ',width=' + WW + ',height=' + WH;
  subWin_a = window.open(theURL,winName,Features);
  subWin_a.focus()
}

function information(){
	if(location.pathname.indexOf("brand_index01.html") != -1){
		path = "";
	}else{
		path = "../";
	}
	for(i=0; i<info.length; i++){
	document.write('<p>');
	document.write('<a href="'+ path + url[i] +'">'+info[i]+'</a>');
	document.writeln('</p>');
	}

}
