﻿var ghostText = "Enter the name of your hotel and city";

function setGhostText(elemId) 
{
	var txtBox = document.getElementById(elemId);
	if (txtBox.value == "") 
	{
		txtBox.value = ghostText;
		txtBox.className = "ghostText";
	}
}

function removeGhostText(elemId) 
{
	var txtBox = document.getElementById(elemId);
	if (txtBox.value == ghostText) 
	{
		txtBox.value = "";
		txtBox.className = "ac_input";
	}
}

function onfocussearch(elemid) 
{
    sval = document.getElementById(elemid).value;
    if (sval == "Hotel name or U.S. City")
    {
        document.getElementById(elemid).value = "";
    }
}
	
function onblursearch(elemid)
{
    sval = document.getElementById(elemid).value;
    if (sval == "")
    {
        document.getElementById(elemid).value = "Hotel name or U.S. City";
    }
}
