/* This function opens a popup widow for image files */
function openPropertyImagePopup() {
	popup_handle = window.open('image_property_form.php', 'property_images', 'width=600, height=400, toolbar=no, scrollbars=no, status=no, resizable=yes, menubar=no');
}
// End openPropertyImagePopup()


/* This function opens a popup widow for help files */
function popupHelp(p_url) {
	popup_handle = window.open('../help/help.php?page=' + p_url, 'help', 'width=500, height=300, toolbar=no, scrollbars=yes, status=no, resizable=yes, menubar=no');
}
// End popupHelp()


/* This function opens a larger popup widow for help files */
function popupPricing(p_id) {
	popup_handle = window.open('../travel/pricing_matrix.php?id=' + p_id, 'pricing', 'width=500, height=400, toolbar=no, scrollbars=yes, status=no, resizable=yes, menubar=no');
}
// End popupHelp()

// This function restes the side panel height
function setSides() {
	//alert(document.getElementById('print_content').offsetHeight)

	//== Make sure side panels go the entire height
	leftHeight = document.getElementById('print_content').offsetHeight + 139;
	rightHeight = document.getElementById('print_content').offsetHeight + 55;
	
	
	if (document.getElementById('sidemenu_box').offsetHeight < leftHeight) {
		document.getElementById('sidemenu_box').style.height = leftHeight;
	}

	if (document.getElementById('features_box').offsetHeight < rightHeight) {
		document.getElementById('features_box').style.height = rightHeight;
	}
}
