function getFlash (width,height,id,movie,bg)
{
document.write("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0' width=" +  width + " height=" + height + " id='Treatments'>");
document.write("<param name='allowScriptAccess' value='sameDomain' />");
document.write("<param name='movie' value='" + movie +"' />");
document.write("<param name='quality' value='high' />");
document.write("<param name='bgcolor' value="+ bg +" />");
document.write("<embed src='" + movie + "' name='tv'  type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' width='" +  width + "' height='" + height + "' id='Treatments' quality='high' bgcolor='" + bg + "' ></embed>");
document.write("</object>");
}

function getQT (width,height,movie)
{
document.write("<object classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' codebase='http://www.apple.com/qtactivex/qtplugin.cab' width=" +  width + " height=" + height + " id='Treatments'>");
document.write("<param name='src' value='" + movie +"' />");
document.write("<param name='autoplay' value='true' />");
document.write("<param name='controller' value='true' />");
document.write("<param name='kioskmode' value='true' />");
document.write("<embed kioskmode='true' src='" + movie + "' name='tv'  type='video/quicktime'  controller='true' autoplay='true' pluginspage='http://www.apple.com/quicktime/download/' width='" +  width + "' height='" + height + "'></embed>");
document.write("</object>");
}