﻿
//
function Window_Load()
{
	var oTbSearch = document.getElementById("tbSearch");
	
	if ((oTbSearch != null) && (oTbSearch.value != "búsqueda"))
	{
		if (oTbSearch.value == "")
		{
			oTbSearch.value = "búsqueda";
		}
		else
		{
			oTbSearch.title = "";
			oTbSearch.style.color = "#000";
			oTbSearch.style.cursor = "text";
		}
	}
}

//
function FocusSearch(textbox)
{
	if (textbox.value == "búsqueda")
	{
		textbox.value = textbox.title = "";
		textbox.style.color = "#000";
		textbox.style.cursor = "text";
	}
}

//
function BlurSearch(textbox)
{
	if (textbox.value == "")
	{
		textbox.value = textbox.title = "búsqueda";
		textbox.style.color = "#aaa";
		textbox.style.cursor = "default";
	}
}

//
function ClickButton(btnID)
{
	if ((event.which && event.which == 13) || (event.keyCode && event.keyCode == 13))
	{
		document.getElementById(btnID).click();
		return false;
	}
	else
	{
		return true;
	}
}

//
function GoogleSearch()
{
	var query = document.getElementById("tbSearch").value;

	var googleUrl = "http://www.google.es/custom?domains=www.yatesdegalicia.com&q=" + 
					(query == "búsqueda" ? "" : query) + 
					"&sa=B%FAsqueda&sitesearch=www.yatesdegalicia.com&client=pub-5746478451151650&forid=1&ie=UTF-8&oe=UTF-8&cof=GALT%3A%23cc0000%3BGL%3A1%3BDIV%3A%2393cbee%3BVLC%3A95adc3%3BAH%3Acenter%3BBGC%3AFFFFFF%3BLBGC%3Af8f8f8%3BALC%3A0088FF%3BLC%3A0066CB%3BT%3A444B52%3BGFNT%3A777777%3BGIMP%3A777777%3BLH%3A32%3BLW%3A195%3BL%3Ahttp%3A%2F%2Fwww.yatesdegalicia.com%2Fimages%2FgoogleLogo.gif%3BS%3Ahttp%3A%2F%2Fwww.yatesdegalicia.com%3BFORID%3A1%3B&hl=es";

	window.open(googleUrl, "GoogleSearchWindow");
	
	return false;
}

/*
//
function __doPostBack(eventTarget, eventArgument)
{
	var theform = document.getElementById("mainForm");
	
	theform.__EVENTTARGET.value = eventTarget.split("$").join(":");
	theform.__EVENTARGUMENT.value = eventArgument;
	theform.submit();
}
*/

//
window.onload = Window_Load;
