function fix(theText){
  document.write(theText);
}

function drawFlashObject(width, height, nump, max){
  fix("<OBJECT classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000'");
  fix("  codebase='http://download.macromedia.com/'  ");
  fix("  WIDTH='"+width+"' HEIGHT='"+height+"' id='flaMovie1'>");
  fix("  <PARAM NAME=movie VALUE='/custom/SendUsDoctors.swf?nump="+nump+"&max="+max+"'> ");
  fix("  <PARAM NAME=quality VALUE=high>");
  fix("  <PARAM NAME=bgcolor VALUE=#FFFFFF> ");
  fix("  <EMBED src='/custom/SendUsDoctors.swf?nump="+nump+"&max="+max+"' ");
  fix("    quality=high bgcolor=#FFFFFF WIDTH='"+width+"' HEIGHT='"+height+"' NAME='flaMovie1'");
  fix("    TYPE='application/x-shockwave-flash' ");
  fix("    PLUGINSPAGE='http://www.macromedia.com/go/getflashplayer'>");
  fix("  </EMBED>");
  fix("</OBJECT>");
}
