// JavaScript Document
var city;
function gotocity()
{
    var city = document.forms[0].Hotel.selectedIndex;
    if(city == 0 || city == 1 || city ==9)
    {
		pop_menu=window.open("counpop.htm","win1","toolbar=no,directories=no, resize=no,menubar=no,location=no,scrollbars=no,width=190,height=130,maximize=null"); 
		pop_menu.focus();
    }
		
	
    else if (city == 2)
    {
		parent.location.href="hotelhome.asp?City=Jeddah";  
    }
    else if (city == 3)
    {
		parent.location.href="hotelhome.asp?City=Khamis";  
    }
    else if (city == 4)
    {
		parent.location.href="hotelhome.asp?City=Makkah";  
    }

}

function reserve()
{

    var res = document.forms[0].Resv.selectedIndex;
    if(res == 0 || res==1 || res==9)
    {
		pop_menu=window.open("counpop.htm","win1","toolbar=no,directories=no, resize=no,menubar=no,location=no,scrollbars=no,width=190,height=130,maximize=null"); 
		pop_menu.focus();
    }
   		
    else if (res == 2)
    {
		parent.location.href="reservation.asp?hdnCity=Jeddah";
    }
    else if (res == 3)
    {
		parent.location.href="reservation.asp?hdnCity=Khamis";
    }
    else if (res == 4)
    {
		parent.location.href="reservation.asp?hdnCity=Makkah";
    }

}