function emptyText(obj, or_text)
{
	if (obj.value == or_text)
	{
		obj.style.color = "#000000";
		obj.value = "";
	}
}	

function setText(obj, or_text)
{
	if (obj.value == "")
	{
		obj.style.color = "#898989";
		obj.value = or_text;
	}
}		

function SendCheckBooking()
{
	document.forms['frm_check'].submit();
}

function SendLocation()
{
	document.forms['frm_location'].submit();
}