window.onresize=myResize;



function myResize() {

  //alert("myResize");

  var o=document.getElementsByName("flashmovie")[0];

  var p=document.getElementById("flashmovieobject");

  //alert('original: o '+o.width+'x'+o.height+', p '+p.width+'x'+p.height);

  //alert("offsetHeight"+document.body.offsetHeight);

  //if (document.body.offsetWidth>=MINW) {

  	if (o!=null) o.setAttribute("width","100%");

	if (p!=null) p.setAttribute("width","100%");

  //}

  /*else {

    if (o!=null) o.setAttribute("width",MINW);

	if (p!=null) p.setAttribute("width",MINW);

  }*/

  //if (document.body.offsetHeight>=MINH) {

    if (o!=null) o.setAttribute("height","100%");

    if (p!=null) p.setAttribute("height","100%");

  //}

  /*else {

    if (o!=null) o.setAttribute("height",MINH);

    if (p!=null) p.setAttribute("height",MINH);

  }*/

  //alert('altered: o '+o.width+'x'+o.height+', p '+p.width+'x'+p.height);

  

}



function forceSize(wid,hei) {

  //alert("forceSize "+wid+" "+hei);

  var o=document.getElementsByName("flashmovie")[0];

  var p=document.getElementById("flashmovieobject");

  if (o!=null) {

    o.setAttribute("width",wid);

    o.setAttribute("height",hei);

  }

  if (p!=null) {

    p.setAttribute("width",wid);

    p.setAttribute("height",hei);

  }

  //alert("forceSize");

}



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 myGetElement(id){

  return document.getElementsByName(id)[0];

}









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=\"#ffffff\" / >");

document.writeln("<embed src=\""+src+"\" quality=\"high\" scale=\"noscale\" salign=\"lt\" bgcolor=\"#ffffff\" 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>");



}

