// JavaScript Document

function movie_stream(TITLE,WIDTH,HEIGHT)
{

if (! HEIGHT) 
{ 
HEIGHT=316; 
} 
else 
{ 
HEIGHT=HEIGHT+16; 
} 

if (! WIDTH) 
{ 
WIDTH=450; 
} 

document.write('<OBJECT CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" WIDTH="');
document.write(WIDTH);
document.write('" HEIGHT="');
document.write(HEIGHT);
document.write('" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab">\n');

document.write('<PARAM name="SRC" VALUE="http://remote.rexross.com/posters/');
document.write(TITLE);
document.write('.mov">\n');

document.write('<PARAM name="AUTOPLAY" VALUE="true">\n');
document.write('<PARAM name="CONTROLLER" VALUE="false">\n');

document.write('<PARAM name="HREF" VALUE="http://streams.rustyross.com/~rex/qtmedia/');
document.write(TITLE);
document.write('.mov">\n');

document.write('<PARAM name="TARGET" VALUE="myself">\n');

document.write('<EMBED src="ImageFoldersRemote/posters/');
document.write(TITLE);
document.write('.mov" WIDTH="');
document.write(WIDTH);
document.write('" HEIGHT="');
document.write(HEIGHT);
document.write('" AUTOPLAY="true" CONTROLLER="false" HREF="http://streams.rustyross.com/~rex/qtmedia/');
document.write(TITLE);
document.write('.mov" TARGET="myself" PLUGINSPAGE="http://www.apple.com/quicktime/download/">\n');

document.write('</EMBED>\n');

document.write('</OBJECT>\n');
}

