<!--
function changeDiv(the_div,the_change)
{
var the_style = getStyleObject(the_div);
if (the_style != false)
{
the_style.display = the_change;
}
}

function hideAll()
{
changeDiv("city_hotel_search","none");
changeDiv("i_need_a_hotel_tutorial","none");
}

function getStyleObject(objectId) {
if (document.getElementById && document.getElementById(objectId)) {
return document.getElementById(objectId).style;
} else if (document.all && document.all(objectId)) {
return document.all(objectId).style;
} else {
return false;
}
}
// -->
<!--
function StartPosition() {
var MyURL 
MyURL = document.URL
if (MyURL.match("city_hotel_search"))
{
  hideAll(); changeDiv("city_hotel_search","block");
}
else if (MyURL.match("i_need_a_hotel_tutorial"))
{
  hideAll(); changeDiv("i_need_a_hotel_tutorial","block");
}
else
{
  hideAll(); changeDiv("city_hotel_search","block");
}
}
// -->
