﻿// JScript File
function callSearch()
{
	if(document.getElementById("txtsearch")!= null)
	{
		window.location = "http://www.gulfoilindia.com/SearchResult.html?searchtext=" + document.getElementById("txtsearch").value;
	}
	 else
	 {
	 alert("txtsearch can not be found");
	 }
}

