// 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);
	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";	
	}
	
}	

