﻿// JavaScript Document
function submitSearch()
{
	if(document.getElementById('keyword').value=='')
	{
		alert('请输入要搜索的关键字!');
		return false;
	}
	else
	{
		var action=url;
		var type=document.getElementById('type').value;
		if(type==0)
		{
			action=action+"product/?t=proList";
		}
		else if(type==1)
		{
		    action=action+"company/?t=_list";
		}
		else
		{
			action=action+"trade/?t=_list";
		}
		
		action=action+"&k="+encodeURIComponent(document.getElementById('keyword').value);
		location.href=action;
	}
}