function popAbout(countryCode, lang)
 {
     var url = 'About.aspx?countryCode=' + countryCode + '&lang=' + lang;
   window.open(url,'popabout','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,copyhistory=no,scrollbars=yes,width=400,height=300');
 }


function popabout()
 {
   window.open('about.htm','popabout','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,copyhistory=no,scrollbars=yes,width=400,height=300');
 }


 function popFaq(countryCode, lang) {
   var url = 'Faq.aspx?countryCode=' + countryCode + '&lang=' + lang;
   window.open(url,'popfaq','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,copyhistory=no,scrollbars=yes,width=400,height=300');
 }

 
 function contactUs(hotelId)
 {
   var href = 'ContactUs.aspx?hotelId=' + hotelId;
   window.open(href,'contactUs','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,copyhistory=no,scrollbars=yes,width=710,height=500');
 }
 
