
	//ÇÃ·¡½Ã Ãâ·Â
	function embed(src,width,height,vars){
		document.write('\
		<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="'+width+'" HEIGHT="'+height+'">\
		<PARAM NAME=movie VALUE="'+src+'">\
		<PARAM NAME=quality VALUE=high>\
		<PARAM NAME=wmode VALUE=transparent>\
		<PARAM NAME=bgcolor VALUE=#FFFFFF>\
		<param name=flashvars value="' + vars + '">\
		<EMBED src="'+src+'" quality=high bgcolor=#FFFFFF WIDTH="'+width+'" HEIGHT="'+height+'" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer" flashvars="' + vars + '"></EMBED>\
		</OBJECT>\
		');
	}//embed


	function rollOver(menu_name){
		var img_obj = document.getElementById(menu_name);
		img_obj.src = "/pic/"+menu_name+"_o.gif";
	}//rollOver


	function rollOut(menu_name){
		var img_obj = document.getElementById(menu_name);
		img_obj.src = "/pic/"+menu_name+"_n.gif";
	}//rollOut

	function go_quick_search(uid){
		if(uid!=-1){
			location.href="/product_detail/index.php?cate1=projector&uid="+uid;
		}
	}

	function SetImageSizeMain(){
		if(document.getElementById('mainimg').width >= document.getElementById('mainimg').height){
			if(document.getElementById('mainimg').width > 307)
				document.getElementById('mainimg').width = 307;
		}else{
			if(document.getElementById('mainimg').height > 196)
				document.getElementById('mainimg').height = 196;
		}
	}//SetImageSizeMain

	function SetImageSizeElse(count){
		if(count>0){
			for(var i=0;i<count;i++){
				if(document.getElementById('elseimg'+i).width > 753)
					document.getElementById('elseimg'+i).width = 753;
			}
		}
	}//SetImageSizeElse

	function SetImageSize(){
		if(document.getElementById('viewimg').width > 700)
					document.getElementById('viewimg').width=700;
	}