// JavaScript Document
function submitSearch()
{
	if(document.getElementById('keyword').value=='')
	{
		alert('Enter the Keywords, Please ');
		return false;
	}
	else
	{
		var action=url;
	
		
			action=action+"aproduct/?t=productLists";
		
		
		action=action+"&keyword="+document.getElementById('keyword').value;
		
		location.href=action;
	}
}
