window.onresize=myResize;

function myResize() {
  //alert("myResize");
  var o=document.getElementsByName("flashmovie")[0];
  var p=document.getElementById("flashmovieobject");
  
    if (o!=null) o.setAttribute("width","100%");
	if (p!=null) p.setAttribute("width","100%");
  
    if (o!=null) o.setAttribute("height","100%");
    if (p!=null) p.setAttribute("height","100%");

}

function forceWidth(wid) {
  var o=document.getElementsByName("flashmovie")[0];
  var p=document.getElementById("flashmovieobject");
  if (o!=null) {
    o.setAttribute("width",wid);
  }
  if (p!=null) {
    p.setAttribute("width",wid);
  }
}
function forceHeight(hei) {
  var o=document.getElementsByName("flashmovie")[0];
  var p=document.getElementById("flashmovieobject");
  if (o!=null) {
    o.setAttribute("height",hei);
  }
  if (p!=null) {
    p.setAttribute("height",hei);
  }
}



function putFlashMovie(src,embedname,objectid) {
//alert(src+" "+embedname+" "+objectid);
document.writeln("<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\" width=\"100%\" height=\"100%\" id=\""+objectid+"\" align=\"middle\">");
document.writeln("<param name=\"allowScriptAccess\" value=\"sameDomain\" />");
document.writeln("<param name=\"movie\" value=\""+src+"\" />");
document.writeln("<param name=\"quality\" value=\"high\" /><param name=\"scale\" value=\"noscale\" /><param name=\"salign\" value=\"lt\" /><param name=\"bgcolor\" value=\"#000000\" / >");
document.writeln("<embed src=\""+src+"\" quality=\"high\" scale=\"noscale\" salign=\"lt\" bgcolor=\"#000000\" width=\"100%\" height=\"100%\" name=\""+embedname+"\" align=\"middle\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />");
document.writeln("</object>");

}


