// JavaScript Document
//站内搜索
function searcheck(){
	if(document.formSear.keys.value==""){
		alert("请输入关键词后再进行查询！");
		document.formSear.keys.focus();
		return false
	}
}

function show_image(name)
{
	var imagename=name;
	if (imagename=="")
	{
		document.showpro.src="images/other/img.gif";
	}
	else
	{
		//imagepath = "../Upload/Sort/" + imagename;
		imagepath = imagename;
		//document.showpro.src=imagepath;
		document.showpro.src="upload/product/"+imagepath;
	}
}