// JavaScript Document
function make_link()
{
	if(document.all.selectfrom.value==1)
	{
	document.location="product.html ";
	}
	else if(document.all.selectfrom.value==2)
	{
	document.location="product1.html";
	}
	else if(document.all.selectfrom.value==3)
	{
	document.location="product2.html";
	}
	else if(document.all.selectfrom.value==4)
	{
	document.location="product3.html";
	}
	else if(document.all.selectfrom.value==5)
	{
	document.location="product4.html";
	}
	else if(document.all.selectfrom.value==6)
	{
	document.location="automaticreel.html";
	}
	else if(document.all.selectfrom.value==7)
	{
	document.location="otherproduct.html";
	
	}

	
	
}