function resizeIframe(oIframe){
    var innerHeight = oIframe.contentWindow.getActualHeight();
    oIframe.height = innerHeight;
}
$(document).ready(function() {
	$("div.visitSitePromoBtn").click(function() {
		var id = '#' + $(this).parent().attr("id");
		
		if($(this).hasClass("active")){
			$(this).modal({width:400, height:250, src:'/modal/interstitial/?promo=' + $(this).attr("id")}).open();
		}
		else{
			window.open($(this).attr("id"), '_blank');
		}
    });	
});
