// JavaScript Document
function doSubmit(){
	searchdiv=document.getElementById('search');
	if(searchdiv.value==""){
		return false;
		}else{
		return true;	
		}
	}

function showproduct(img_href,showdivid,pic,lid,proname){
	showdiv=document.getElementById(showdivid);
	showdiv1=document.getElementById(img_href);
	var pathimg=pic;
	var ob=pathimg.split("upfile/");
    pathimg=ob[1];
	var newpic=pathimg.split(".");
	newpic=newpic[0]+"-b."+newpic[1];
	showdiv.src=ob[0]+"upfile/"+newpic;
	showdiv1.href="zoom.aspx?img="+pathimg+"&id="+lid+"";
	}


//function showproduct(img_href,showdivid,pic,lid,proname){
//	showdiv=document.getElementById(showdivid);
//	showdiv1=document.getElementById(img_href);
//	showdiv.src=pic;
//	var pathimg=pic;	
//    var ob=pathimg.split("upfile/");
//    pathimg=ob[1];
//	pathimg=pathimg.replace(".", "BEY");
//	showdiv1.href="../"+proname+"/"+pathimg+"_"+lid+".html";
//	}
	
function gotopage(){
	page=document.getElementById("gopage").value;
	url=String(window.location).split("/")
	temps=url[url.length-1].split(".")
	files=temps[0].split("_");
	filename=files[0]
	
	if(page==""){ 
		return false; 
	}else if(page==1){
		window.location.href=filename+".html";	
	}else{
		
		window.location.href=filename+"_"+page+".html";	
	}
	
}	

