function CreateIframe(src,dialogbox,title,width,height)
{

 var width = Math.round(((document.documentElement.clientWidth-20)*0.9));
 var height = Math.round(((document.documentElement.clientHeight - 156)*0.95));
 
 iframe = "<div class=\"imagemargin\"><iframe name=\""+ dialogbox + "iframe\" id=\"" + dialogbox + "iframe\" src=\"" + src + "\" height=\"" + height + "\" width=\"100%\" frameborder=\"0\"></iframe></div>\n";
  
 DialogBox(dialogbox,title,iframe,width,height,"");
 document.getElementById(dialogbox).style.width = width + "px";
 document.getElementById(dialogbox).style.height = height + "px";
}



