
/**
 * display the print-friendly version of the page
 * 
 * NOTE: the print page itself contains the javascript that will automatically trigger the OS print dialog. It is
 * not in this method
 * 
 * @return
 */
function print_page(){
	$('#print_confirmation_wrap').hide();
	
	var printURL = "" + document.location;
	if( printURL.indexOf('?') == -1 )
	   printURL += "?print=1";
	else
	   printURL += "&print=1";	
	window.open(printURL, "printWindow", "location=0,status=0,scrollbars=1,resizable=1,width=600,height=500");	
	
}

