/*
function hoteldetails(hotelid,roomcategory)
{
   var url="../Hotels/Details.aspx?Hotelid="+ hotelid+ "&RoomCategory=" +roomcategory; 
   var childwindow=window.open(url, "HotelDetails", "menubar=0,width=500,height=265,top=250,left=300,toolbar=0,scrollbars=yes,status=no,resizable=no"); 
} 
        
function check(url)
{  
    var childwindow=window.open(url, "UserDetails", "menubar=0,width=500,height=265,top=250,left=300,toolbar=0,scrollbars=yes,status=yes,resizable=no"); 
}  
*/  
          
//function to open a new window
function newwindow(url,options)
{
    var childwindow = window.open(url, "Details", options);    
        childwindow.focus();
        alwaysLowered = false;
} 
                 
//test fuction for hiding any particular section before printing a page
function test()
{
    var coll = document.all.tags("DIV");
    if (coll!=null)
    {
          for (i=0; i<coll.length; i++)
          { 
	          if (coll[i].className == "expanded")
		      {  
		         coll[i].className = "collapsed";
		   
		             // After printing, make sure to set CLASS="collapsed" 
		             // only for those that were expanded just for printing.
		          coll[i].bExpandedForPrinting = true;
		       }
		        else if (coll[i].className == "expanded")
		          coll[i].bExpandedForPrinting = false;
          }
    }

}
