﻿// JScript File
var modalWindow = {  
	parent:".container",  
	windowId:null,  
	content:null,  
	width:null,  
	height:null,  
	close:function()  
	{  
		$(".modal-window").css("display","none");
		$(".modal-overlay").css("display","none"); 
	},  
	open:function()  
	{
		$(".modal-window").html('<table width="100%" height="100%"><tr><td align="center" valign="middle">'+this.content+'</td></tr></table>');
		$(".modal-window").css("display","block");
		$(".modal-overlay").css("display","block");
	}
};

function OpenSimpleModal(width, height, source)
{
    modalWindow.windowId = "myModal";
	modalWindow.width = width;
	modalWindow.height = height;
	modalWindow.content = "<iframe id='loginFrame' width='"+modalWindow.width+"' height='"+modalWindow.height+"' frameborder='0' scrolling='no' src='" + source + "' ></iframe>";
	modalWindow.open();
}
function hideIFrame()
{
    document.getElementById("content").style.display="none";
}


