var modalWindow = {
	parent:"body",
	windowId:null,
	content:null,
	width:null,
	height:null,
	left:null,
close:function()
	{
		
$(".modal-window").remove();

$(".modal-overlay").remove();
	
},

open:function()

{

		var modal = "";
		
modal += "<div class=\"modal-overlay\"></div>";
		
modal += "<div id=\"" + this.windowId + "\" class=\"modal-window\" style=\"position:absolute;text-align:center;vertical-align:top;border:0 solid red;left:"+this.left+"px;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);


$('#'+this.windowId).fadeIn("slow");
$(".close-window").click(function(){modalWindow.close();});
		
$(".modal-overlay").click(function(){modalWindow.close();});


	
}

};
