// Java Document
function UrlPage(url,UrlPage){
	document.pageform.page.value=UrlPage;
	document.pageform.action=url;
	document.pageform.submit();
}
function trclick(id){
	if(document.getElementById(id).style.display=="none"){
		document.getElementById(id).style.display="block";
		try{
		document.getElementById("img"+id).src="images/ico_open.gif";
		}
		catch(e){}
	}else if(document.getElementById(id).style.display=="block"){
		document.getElementById(id).style.display="none";
		try{
		document.getElementById("img"+id).src="images/ico_close_first.gif";
		}
		catch(e){}
	}
}
function PTrClick(id){
	if (id==7){
		window.location="sb.asp";
	}
	else if(id==9){
		window.location="al.asp";
	}
	else{
		window.location="product.asp?pro_type="+id;
	}
}

