$(document).ready(function() {
	$('.showBookingPage').colorbox({width:800, height:550, opacity:0.3, iframe:true });


	var originalClose = $.colorbox.close; 
	$.colorbox.close = function(){ 
	    var response; 
	    if($('#cboxLoadedContent').find('form').length > 0){ 
	       response = confirm('Do you want to close this window?'); 
	       if(!response){ 
	          return; // Do nothing. 
	       } 
	    } 
	    originalClose(); 
	}; 

});
