//--------------------style sheet--------------------

var Win = navigator.appVersion.indexOf('Win',0) != -1;
var Mac = navigator.appVersion.indexOf('Mac',0) != -1;
var IE = navigator.appName.indexOf('Microsoft',0) != -1;
var NN = navigator.appName.indexOf('Netscape',0) != -1;
if(Mac){
document.write('<link rel="stylesheet" href="/common/css/fontmac.css" type="text/css">');
}
else if(Win){
document.write('<link rel="stylesheet" href="/common/css/fontwin.css" type="text/css">');
}

document.write('<link rel="stylesheet" href="/common/css/layout.css" type="text/css">');


//--------------------pop up window--------------------

function openPopWin(url){
popupWin = window.open(url,"name",'toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=1,Width=530,Height=600');
popupWin.focus();
popupWin.moveTo(0,0);
}