function InsertMovie() 
{
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"');
	document.write('codebase="http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0" ');
	document.write('width="300" height="330" align="middle">');

  	document.write('<param name="src" value="http://media.outerlevel.com.s3.amazonaws.com/Bullfrog.mov">Movie failed to load');
	document.write('</object>');
}


function wopen(url, name, w, h)
{
// Fudge factors for window decoration space.
 // In my tests these work well on all platforms & browsers.
w += 32;
h += 96;
 var win = window.open(url,
  name, 
  'width=' + w + ', height=' + h + ', ' +
  'location=no, menubar=no, ' +
  'status=no, toolbar=no, scrollbars=no, resizable=no');
 win.resizeTo(w, h);
 win.focus();
}
