function addbasket()
	{
		var temp=document.getElementsByName("check_");
		var temp2="";
		for(var i=0;i<temp.length;i++)
		{
			if(temp[i].checked)
				temp2=temp2+temp[i].value+",";
		}
		if(temp2.length>0)
		{
			temp2=temp2.substring(0,temp2.length-1);
		}
		window.location="/check/"+temp2+".html";
	}
	function sendinquiry()
	{
		var temp=document.getElementsByName("check_");
		var temp2="";
		for(var i=0;i<temp.length;i++)
		{
			if(temp[i].checked)
				temp2=temp2+temp[i].value+";";
		}
		if(temp2.length>0)
		{
			temp2=temp2.substring(0,temp2.length-1);
		}
		window.location="/send-inquiry/"+temp2+";";
	}
	function sq(id)
	{
		var temp2=id;
		window.location="/send-inquiry/"+temp2+";";
	}
	function page_()
	{
		var temp=document.getElementsByName("menu_page");
	}
	

