function switchTag(tag,menu){
	//alert(tag);
	for(var i=1; i<=4; i++){
		if ("tag"+i==tag){
				document.getElementById(tag).className="sls";
		}else{
				document.getElementById("tag"+i).className="";
		}
		if ("cont"+i == menu){
			document.getElementById(menu).className="cont";
		}else{
			document.getElementById("cont"+i).className="cont hideme";
		}
	}
}

function lunch(m){
	for(var i=1; i<=10; i++){
		if ("s"+i==m){
			document.getElementById(m).className="";
		}else{
			document.getElementById("s"+i).className="hideme";
		}
	}	
}

var curr_x = screen.availWidth;
var curr_y = screen.availHeight;
var css_host = "http://www.manufacturers.com.tw/";

if(curr_x == 800 ) {
	document.write('<link href="'+css_host+'/taitra/lib/style800.css" rel="stylesheet" type="text/css" media="screen, projection" />');
}else{
	document.write('<link href="'+css_host+'/taitra/lib/style.css" rel="stylesheet" type="text/css" media="screen, projection" />');
}