﻿// JavaScript Document
function imeWin(file,w,h,r,s){
    window.open(file,'','resizable='+r+',width='+w+",height="+h+',scrollbars='+s+',left='+(screen.availWidth-w)/2+',top='+(screen.availHeight-h)/2);
}

function showSimgs(obj,bimgs,pid){
	document.getElementById("simgsText").innerHTML="图片正在加载，请稍候……";
	document.getElementById("simgs").src="upLoadImgs/"+obj;
	document.getElementById("simgsHref").href="products_Bimgs.asp?bimgs="+bimgs+"&pid="+pid;
}
function showSimgsed(){
	document.getElementById("simgsText").style.display="none";
	document.getElementById("simgs").style.display="block";
}

var tagPrev;
function tag(obj){
	if(document.getElementById("tag_"+tagPrev)!=null){
		document.getElementById("tag_"+tagPrev).className="tagdef";
		document.getElementById("tagCon_"+tagPrev).style.display="none";
	}
	document.getElementById("tag_"+obj).className="tag_A";
	document.getElementById("tagCon_"+obj).style.display="block";
	tagPrev=obj;
}
