<!--
 function createIframe(border,id,width,height)
 {
  var myframe = document.createElement("iframe");
  var frameborder = document.createAttribute("frameborder");
  var frameid = document.createAttribute("id");
  var framewidth = document.createAttribute("width");
  var frameheight = document.createAttribute("height");
  frameborder.nodeValue = border;
  frameid.nodeValue = id;
  framewidth.nodeValue = width;
  frameheight.nodeValue = height;
  myframe.setAttributeNode(frameborder);
  myframe.setAttributeNode(frameid);
  myframe.setAttributeNode(frameheight);
  myframe.setAttributeNode(framewidth);
  return(myframe);
 }
// -->