// JavaScript Document
var openMyModal = function(source,swidth,sheight)
{
	modalWindow.windowId = "myModal";
	modalWindow.width = swidth;
	modalWindow.height = sheight;
	modalWindow.content = "<iframe width='"+swidth+"' height='"+sheight+"' frameborder='0' scrolling='auto' allowtransparency='true' src='" + source + "'>&lt/iframe>";
	modalWindow.open();
};	
