function searchProduct()
{
	window.location="/search.asp?KeyWord="+document.getElementById("KeyWord").value;
}
function initImg(obj,w,h)
{
	var ow = obj.width ;
	var oh = obj.height ;
	if( ow > w || oh > h)
	{
		var ws = ow / w ;
		var hs = oh / h ;
		if( ws > hs)
		{
			obj.width = w ;
			obj.height = oh / ws;
		}
		else
		{
			obj.width = ow / hs ;
			obj.height = h ;
		}
	}
}
function ReplaceUrl(p_source)
{	
	var res= p_source.replace(/[\W]/g,'-').split("@").join("-").split("_").join("-");
	ress = res.split("-");
	var result="";
	for(var i=0;i<ress.length;i++)
	{
		if (ress[i].length>0) {
			result += ress[i]+"-";
		}
	};
	if (result.lastIndexOf("-")==result.length-1) {
		result = result.substring(0,result.length-1)
	}
	return result;
}
function showPic(picSrc,productID)
{
	//document.getElementById('bigPic').src=picSrc;
	document.getElementById('ImgUrl').href=document.location.href.replace(productID+'/',productID+'b/')+'?pic='+picSrc;
	document.getElementById('NameUrl').href=document.getElementById('ImgUrl').href;
	var obj = document.getElementById('bigPic') ;
	img=document.createElement("img");
	img.src=picSrc;
	img.id = "tempImg";
	img.style.position="absolute";
	initImg(img,246,246);
	obj.src = img.src;
	obj.style.width = img.width;
	obj.style.height = img.height;
}