var modalWindow = {
	 parent:"body",
	 windowId:null,
	 content:null,
	 width:null,
	 height:null,
	 close:function()
	 {
		  $(".modal-window").remove();
	  	$(".modal-overlay").remove();
		document.body.style.overflow="visible";
	document.getElementById('parche_ie_scroll').innerHTML='';
	 },
	 open:function()
	 {
		  var modal = "";
		  modal += "<div class=\"modal-overlay\"></div>";
		  modal += "<div id=\"" + this.windowId + "\" class=\"modal-window\" style=\"width:" + this.width + "px; height:" + this.height + "px; margin-top:-" + (this.height / 2) + "px; margin-left:-" + (this.width / 2) + "px;\">";
		  modal += this.content;
		  modal += "</div>"; 
		
		  $(this.parent).append(modal);
		
		  /*$(".modal-window").append("<a class=\"close-window\"></a>");*/
		  $(".close-window").click(function(){modalWindow.close();});
		  /*$(".modal-overlay").click(function(){modalWindow.close();});*/
 	}
};


var open_modal = function(source)
{
	 modalWindow.windowId = "myModal";
	 modalWindow.width = 757;
	 modalWindow.height = 450;
	 modalWindow.content = "<iframe id='iframeloco' width='757' height='450' frameborder='0' scrolling='no' allowtransparency='true' src='" + source + "'>&lt/iframe>";
	 modalWindow.open();
	 window.scroll(0,0);
	document.body.style.overflow="hidden";
	document.getElementById('parche_ie_scroll').innerHTML='111<style>html{overflow:hidden;}</style>';
	//$('#iframeloco').animate({height:'450px',width:'700px'},800).animate({height:'400px',width:'650px'},200).animate({height:'450px',width:'700px'},200).animate({'margin-left':'10px', 'margin-top':'0px',opacity:.75},100).animate({'margin-left':'0px', 'margin-top':'0px',opacity:.99},100).animate({'margin-left':'-10px', 'margin-top':'0px',opacity:.75},100).animate({'margin-left':'0px', 'margin-top':'0px',opacity:.99},100).animate({'margin-left':'10px', 'margin-top':'0px',opacity:.75},100).animate({'margin-left':'0px', 'margin-top':'0px',opacity:.99},100).animate({'margin-left':'-10px', 'margin-top':'0px',opacity:.75},100).animate({'margin-left':'0px', 'margin-top':'0px',opacity:.99},100);
};
var open_modal5 = function(source)
{
	modalWindow.windowId = "myModal";
	modalWindow.width = 800;
	modalWindow.height = 600;
	modalWindow.content = "<iframe width='800' height='600' frameborder='0' scrolling='no' allowtransparency='true' src='" + source + "'>&lt/iframe>";
	modalWindow.open();
	 window.scroll(0,0);
	document.body.style.overflow="hidden";
	document.getElementById('parche_ie_scroll').innerHTML='111<style>html{overflow:hidden;}</style>';
};
var open_modal6 = function(source)
{
	modalWindow.windowId = "myModal";
	modalWindow.width = 1000;
	modalWindow.height = 650;
	modalWindow.content = "<iframe width='1000' height='650' frameborder='0' scrolling='no' allowtransparency='true' src='" + source + "'>&lt/iframe>";
	modalWindow.open();
	 window.scroll(0,0);
	document.body.style.overflow="hidden";
	document.getElementById('parche_ie_scroll').innerHTML='111<style>html{overflow:hidden;}</style>';
};
function decline(u)
{
	window.location=u;
}

function accept(sc)
{
	modalWindow.close();
	document.body.style.overflow="visible";
	document.getElementById('parche_ie_scroll').innerHTML='';
	if (sc=='advertise'){
			window.scroll(0,0);
			document.body.style.overflow="hidden";
			document.getElementById('parche_ie_scroll').innerHTML='111<style>html{overflow:hidden;}</style>';
			open_modal('disclaimer_advertise.php');
		
	}
	
}
