/* Javascript for In1 Sites.  Creates popup for printing property information */

function createPrint(hotelUse, hotelCode) {

	var winwidth = 500;
	var winheight = 500;
	if (hotelUse == "hotelID") { 
		var popupPage = "propertyPopup.jsp?hotelID="+hotelCode;
	} else {
		var popupPage = "propertyPopup.jsp?hotelCode="+hotelCode;
	}

	var printWindow = window.open (popupPage, "popupProperty","width="+winwidth+"px,height="+winheight+"px,scrollbars=yes,resizable=yes,toolbar=no,directories=no,location=no,menubar=no,status=no,left=20,top=100");

}