var names = getCookie("cssname");
if (names == ""){
	names = "normal";
}
if (navigator.platform.indexOf("Win") != -1){
	document.write("<link rel='stylesheet' href='main_win_" + names + ".css' type='text/css'>");
} else {
	document.write("<link rel='stylesheet' href='main_" + names + ".css' type='text/css'>");
}

function getCookie(key){
	tmp=document.cookie+";";
	tmp1=tmp.indexOf(key, 0);
	if(tmp1 != -1){
		tmp = tmp.substring(tmp1, tmp.length);
		start=tmp.indexOf("=", 0)+1;
		end=tmp.indexOf(";", start);
		return(unescape(tmp.substring(start, end)));
	} else {
		return("");
	}
}

function popfont(Link){
	window.open(Link,'font','toolbar=1,menubar=1,location=1,resizable=1,scrollbars=1');
}

