// JavaScript Document
function doSubmit(){
	searchdiv=document.getElementById('search');
	if(searchdiv.value==""){
		return false;
		}else{
		return true;	
		}
	}


function showproduct(showdivid,pic){
	showdiv=document.getElementById(showdivid);
	showdiv.src=pic;
	}
	
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";	
	}
	
}	