//	cssset();	brCheck();	//CSSSelectfunction cssset(){	if(navigator.userAgent.indexOf("Windows",0) != -1){	//Windows		if(navigator.appName.indexOf("Microsoft",0) != -1){		//IE			if(navigator.appVersion.charAt(0) < 4){			//3 or lower				document.write('<link rel="stylesheet" type="text/css" href="/css/other_RenaStyle.css">');			}		}		if(navigator.appName.indexOf("Netscape",0) != -1){			//NN			if(navigator.appVersion.charAt(0) < 5){			//4ˆÈ‰º				document.write('<link rel="stylesheet" type="text/css" href="/css/Win_NN.css">');			}		}	}	if(navigator.userAgent.indexOf("Windows",0) == -1){	//Not Windows		if(navigator.appName.indexOf("Netscape",0) != -1){		//NN			if(navigator.appVersion.charAt(0) < 5){			//4 or lower				document.write('<link rel="stylesheet" type="text/css" href="/css/other_Style.css">');			}		}	}}//AgentCheckfunction brCheck(){	if(navigator.appName == "Netscape" && navigator.appVersion.charAt(0) >=4){	//NN6		if(document.getElementById){			Agent="NN6";		}	//NN4.7		if(document.layers){			Agent="NN";		}	}	else if(navigator.appName == "Microsoft Internet Explorer" && navigator.appVersion.charAt(0) >= 4){	//IE5		if((document.getElementById)&&(document.all)){			Agent="IE5";		}	//IE4		if(!(document.getElementById)&&(document.all)){			Agent="IE";		}	}	else{		Agent="OTHER";	}}//PreLoad Imagesvar preloadflag = false;function PreLoad(){	var preimgs = new Array();	for(i = 0 ; i < Imglist.length ; i++){		preimgs[i] = new Image();		preimgs[i].src = Imglist[i];	}	preloadflag = true;}//Swap Imagesfunction SwapImage(ImageName,FileName){	if(preloadflag == true){		target = document.images[ImageName];		target.src = FileName;	}}function HeadLink(FormName,PullName){	var tg = eval("document."+FormName+"."+PullName+".selectedIndex");	window.top.location.href = eval("document."+FormName+"."+PullName+".options[tg].value");}//Window Openfunction newWindow(url){    newwindow=window.open("","newwin","toolbar=yes,location=no,directories=no,status=yes,scrollbars=yes,resizable=yes,width=390,height=500");    newwindow.focus();    newwindow.location.href=url;}