function search()
{
	var curForm = document.SearchForm;
	var searchString = document.getElementById("SearchBox").value;
	
	// If "Google" is checked, redirect to Google search
	if (curForm.searchType[1].checked)
	{
		var googleString ="&sa=Google Search&cof=S:http://www.widebayburnett.com.au/;GL:0;AH:center;LH:113;L:http://widebayburnett.com.au/images/googlecco.gif;LW:350;AWFID:3787740b62c75384;"
		
		var redirectString = "http://www.widebayburnett.com.au/r/?u=http://www.google.com.au/custom?q=" + searchString + googleString;
		
		window.location = redirectString;
	}
	else
	{
		// window.location = "http://www.widebayburnett.com.au/r/?u=http://search.countrycoast.com.au/search?q=" + searchString + "&btnG=Search&searchType=CountryCoast&ie=&site=my_collection&output=xml_no_dtd&client=my_collection&lr=&proxystylesheet=my_collection&oe=&getfields=*";
		var googleString ="&sa=Google Search&cof=S:http://www.widebayburnett.com.au/;GL:0;AH:center;LH:113;L:http://countrycoast.com.au/images/googlecco.gif;LW:350;AWFID:3787740b62c75384;"
		
		var redirectString = "http://www.widebayburnett.com.au/r/?u=http://www.google.com.au/custom?q=" + searchString + " site:widebayburnett.com.au" + googleString;
		
		window.location = redirectString;
	}
}

function makeHomePage()
{
	// IE only; automatic set homepage
	if (document.all)
	{
		// Note: IE automatically prompts for confirmation
		document.body.style.behavior = 'url(#default#homepage)';
		document.body.setHomePage('http://www.widebayburnett.com.au/');
		
		// Check to see whether the user did actually confirm
		if (objHomePage.isHomePage("http://www.widebayburnett.com.au/"))
		{
			window.location = "http://www.widebayburnett.com.au/makehomepage.aspx";
		}
	}
	// Firefox / Netscape 6+ only; provide instructions
	else if (document.getElementById)
	{
		window.location = "http://www.widebayburnett.com.au/r/?u=/page.aspx?page=57";
	}
	// Other browsers
	else
	{
		window.location = "http://www.widebayburnett.com.au/r/?u=/page.aspx?page=57";
	}
}
