// JavaScript Document
window.onerror = null; 
var ie  = (navigator.appName.indexOf('Micr') != -1); 
var mac = (navigator.userAgent.indexOf('Mac') != -1 || navigator.userAgent.indexOf('mac') != -1); 
var win = (navigator.userAgent.indexOf('Win') != -1 || navigator.userAgent.indexOf('win') != -1); 
if (win) {
	if (ie) document.write('<link rel="stylesheet" href="/common/css/basic_win.css" type="text/css" media="all">'); 
	else document.write('<link rel="stylesheet" href="/common/css/basic_win.css" type="text/css" media="all">');
}else{
	if (mac) {
		if (ie) document.write('<link rel="stylesheet" href="/common/css/basic_mac.css" type="text/css" media="all">');
		else document.write('<link rel="stylesheet" href="/common/css/basic_mac.css" type="text/css" media="all">');
	}else{
		document.write('<link rel="stylesheet" href="/common/css/top.css" type="text/css" media="all">');
	}
} 

function openWin(url,name,wWidth,wHeight,sBar){
	option="toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars="+sBar+",resizable=1,width="+wWidth+",height="+wHeight;
	newWin=window.open(url,name,option);
	newWin.window.focus();
}
