// create an iframe
$(document).ready(function() {
	$("#oopostiframe").fancybox({
		'width'		: 1030,
		'height'	: 675,
		'autoScale'     : false,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic',
		'showCloseButton': true,
		'scrolling'      :'no',
		'enableEscapeButton' : true,
		'margin':0,
		'padding':0,
		'type'		: 'iframe'
	});
	/**
	$('#closeIframe').click(function() {
		alert('Handler for .click() called.');
	});
	*/
});

function setupBridge() {
	document.domain = "ookapi.com";
}

function closeCurrentIframe(e){
	//alert(e.data);
	$.fancybox.close();
}

window.addEventListener("message", closeCurrentIframe, false);
