var openMyModal = function(source)
	{
		modalWindow.windowId = "myModal";
		modalWindow.width = 820;
		modalWindow.height = 550;
		modalWindow.content = "<iframe width='820' height='550' frameborder='0' scrolling='no' allowtransparency='true' src='" + source + "'></iframe>";
		modalWindow.open();
	};	
