// external_script.js
function  mediaplayer(ObjectID, WIDTH, HEIGHT, URL, AUTOSTART, SHOWCONTROLS )
{	
document.write('<object id="' + ObjectID + '" classid="clsid:6BF52A52-394A-11d3-B153-00C04F79FAA6" width="' + WIDTH + '" height="' + HEIGHT + '">');
document.write('<param name="URL" value="' + URL + '">');
document.write('<param name="ShowControls" value="' + SHOWCONTROLS + '">');
document.write('<param name="autoStart" value="' + AUTOSTART + '">');
document.write('</object>');
}

function  quickplayer(ObjectID, WIDTH, HEIGHT, URL, AUTOSTART, SHOWCONTROLS )
{	
document.write('<object id="' + ObjectID + '" width="' + WIDTH + '" height="' + HEIGHT + '" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab">')
document.write('<param name="src" value="' + URL + '">');
document.write('<param name="autoplay" value="' + AUTOSTART + '">');
document.write('<param name="controller" value="' + SHOWCONTROLS + '">');
document.write('</object>');
}
