var o = navigator.platform.toUpperCase();
document.write("<style type='text/css'>\n");
if(o.indexOf("MAC") >= 0){
	document.write(".t1 {font-size: 8px;}\n");
	document.write(".t1lh {font-size: 8px;line-height : 125%;}\n");
	document.write(".t2 {font-size: 10px;}\n");
	document.write(".t2lh {font-size: 10px;line-height : 125%;}\n");
	document.write(".t2lh_c33 {font-size: 10px;line-height : 125%;color: #cc3333;}\n");
	document.write(".t3 {font-size: 12px;}\n");
	document.write(".t3lh {font-size: 12px;line-height : 125%;}\n");
	document.write(".t3lh_c33 {font-size: 12px;line-height : 125%;color: #cc3333;}\n");
	document.write(".t4 {font-size: 14px;}\n");
	document.write(".t4lh {font-size: 14px;line-height : 125%;}\n");
	document.write(".t4lh_b {font-size: 14px;line-height : 125%; font-weight: 600;}\n");
	document.write(".t5 {font-size: 16px;}\n");
	document.write(".t5lh {font-size: 16px;line-height : 125%;}\n");
}else if(o.indexOf("WIN") >=0){
	if(navigator.appVersion.charAt(0)==4){
		if(navigator.appVersion.indexOf("MSIE 6") !=-1){
			document.write(".t1 {font-size: xx-small;}\n");
			document.write(".t1lh {font-size: xx-small;line-height : 125%;}\n");
			document.write(".t2 {font-size: xx-small;}\n");
			document.write(".t2lh {font-size: xx-small;line-height : 125%;}\n");
			document.write(".t2lh_c33 {font-size: xx-small;line-height : 125%;color: #cc3333;}\n");			
			document.write(".t3 {font-size: x-small;}\n");
			document.write(".t3lh {font-size: x-small;line-height : 125%;}\n");
			document.write(".t3lh_c33 {font-size: x-small;line-height : 125%;color: #cc3333;}\n");		
			document.write(".t4 {font-size: small;}\n");
			document.write(".t4lh {font-size: small;line-height : 125%;}\n");
			document.write(".t4lh_b {font-size: small;line-height : 125%; font-weight: 600;}\n");
			document.write(".t5 {font-size: medium;}\n");
			document.write(".t5lh {font-size: medium;line-height : 125%;}\n");
		}
	}else{
		document.write(".t1 {font-size: 6pt;}\n");
		document.write(".t1lh {font-size: 6pt;line-height : 125%;}\n");
		document.write(".t2 {font-size: 8pt;}\n");
		document.write(".t2lh {font-size: 8pt;line-height : 125%;}\n");
		document.write(".t2lh_c33 {font-size: 8pt;line-height : 125%;color: #cc3333;}\n");		
		document.write(".t3 {font-size: 10pt;}\n");
		document.write(".t3lh {font-size: 10pt;line-height : 125%;}\n");
		document.write(".t3lh_c33 {font-size: 10pt;line-height : 125%;color: #cc3333;}\n");		
		document.write(".t4 {font-size: 12pt;}\n");
		document.write(".t4lh {font-size: 12pt;line-height : 125%;}\n");
		document.write(".t4lh_b {font-size: 12pt;line-height : 125%; font-weight: 600;}\n");
		document.write(".t5 {font-size: 14pt;}\n");
		document.write(".t5lh {font-size: 14pt;line-height : 125%;}\n");
	}
}
document.write("</style>\n");

function new_win(url,a,b){
	var option = "toolbar=no,location=yes,status=yes,directories=no,scrollbars=yes,resizable=yes,width="+a+",height="+b;
	var nw1;
	nw1=window.open(url,"win1",option);
	nw1.window.focus();
}