function takeinfo()
{
	document.getElementById("br").setAttribute("style","display: none");
		$(window).scrollTop(30);	
document.getElementById("black_overlay").setAttribute("style", "display: block");
 document.getElementById("white_content").setAttribute("style","display: block");
}
function booking(hotelid,hotelname,destination,checkin,checkout,rooms,adults1,children1,adults2,children2,adults3,children3,adults4,children4,adults5,children5)
{  		
$('#loading').html('<div align="center" style="margin-top:10px"><span style="color:#FF0000; font-size:14px;">Loading Rooms.. Please Wait..</span></div>');		
document.getElementById("black_overlay").setAttribute("style", "display: none");
document.getElementById("white_content").setAttribute("style","display: none");
document.getElementById("loading").setAttribute("style","display: block");
$.post("processbooking.php", { hotelid:hotelid,hotelname:hotelname,destination:destination,checkin:checkin, checkout:checkout,rooms:rooms,adults1:adults1,children1:children1,adults2:adults2,children2:children2,adults3:adults3,children3:children3,adults4:adults4,children4:children4,adults5:adults5,children5:children5},
   function(data) {
     $('#booking_box').html(data);
   });
   document.getElementById("booking_box").setAttribute("style","display: block");
   document.getElementById("loading").setAttribute("style","display: none");
   //$('#booking_box').focus();
}

function sfairsummery(id)
{
	document.getElementById("fairsummery-"+id).setAttribute("style", "display: block");
}
function hfairsummery(id)
{document.getElementById("fairsummery-"+id).setAttribute("style", "display: none");
}

function enable_userinfo()
{
	$('#booking_box').html('<div align="center" style="margin-top:10px"><span style="color:#FF0000; font-size:14px;">Loading Rooms.. Please Wait..</span></div>');		
document.getElementById("black_overlay").setAttribute("style", "display: block");
document.getElementById("white_content").setAttribute("style","display: block");
$(window).scrollTop(100);
}
 
