// JavaScript Document
function initModalScript() {
	
	document.write("<style>\n");
	
	document.write("#modalShade {\n");
	document.write("background:url(http://plattpou.com/platt4m/imgs/modal.png) repeat;\n");
	document.write("width:100%;\n");
	document.write("height:100%;\n");
	document.write("position: fixed; right: 0px; bottom: 0px;\n");
	document.write("display:block;\n");
	document.write("}\n");
	
	document.write("#modalWindow {\n");
	document.write("display:inline-block;\n");
	document.write("margin-left:auto;\n");
	document.write("margin-right:auto;\n");
	document.write("}\n");
	
	document.write("</style>\n");

    document.write("<div id='modalShade' style='display:none'>\n");
	document.write("<table align='center' height='100%'>\n");
	document.write("<tr><td>\n");
	document.write("<div id='modalWindow'>\n");
	document.write("</div>");
	document.write("</td></tr>");
	document.write("</table>");
	document.write("</div>");
	
	document.getElementById("modalShade").onclick = function( e ) {
	    this.style.display = "none";
		return false;
	}
}






function showModal( url , stayOnClick ) {
   
   if (stayOnClick == true) {
       
	   document.getElementById("modalWindow").onclick = function( e ) {
	     if(window.event) {
		   event.cancelBubble=true;
		  }
		  else {
		   e.cancelBubble=true;
		  }
	   }
   }
   
   document.getElementById("modalWindow").innerHTML = getResult(url);
   document.getElementById("modalShade").style.display = "block";
}


initModalScript();
