function openQuickTime(url, width, height) {
  var win = window.open('','','width=' + width + ', height=' + height);
  
  win.document.writeln('<html><head><title>QuickTime Movie</title></head>');
  win.document.writeln('<body>');
  win.document.writeln('<object classid="clsid:02bf25d5-8c17-4b23-bc80-d3488abddc6b" width="' + width + '" height="' + height + '" codebase="http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0">');
	win.document.writeln('  <param name="controller" value="true" />');
	win.document.writeln('  <param name="type" value="video/quicktime" />');
	win.document.writeln('  <param name="autoplay" value="true" />');
	win.document.writeln('  <param name="target" value="myself" />');
	win.document.writeln('  <param name="src" value="' + url + '" />');
  win.document.writeln('  <param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html">');
	win.document.writeln('  <embed width="' + width + '" height="' + height + '" controller="false" src="' + url + ' type="video/quicktime" target="myself" bgcolor="#000000" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html"></embed></object>');  
  win.document.writeln('</body>');
  win.document.writeln('</html>');
  win.document.close();
  
  return false;
}

function openFlash(url, width, height) {

  var win = window.open('','','width=' + width + ', height=' + height);
  
  win.document.writeln('<html><head><title>Flash Clip</title></head>');
  win.document.writeln('<body>');
  win.document.writeln('<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 + '">');
	win.document.writeln('  <param name="allowScriptAccess" value="sameDomain" />');
	win.document.writeln('  <param name="quality" value="high" />');
	win.document.writeln('  <param name="bgcolor" value="#ffffff" />');
	win.document.writeln('  <param name="type" value="application/x-shockwave-flash" />');
	win.document.writeln('  <param name="movie" value="' + url + '" />');
	win.document.writeln('  <embed width="' + width + '" height="' + height + '" src="' + url + ' border="0" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed></object>');  
  win.document.writeln('</body>');
  win.document.writeln('</html>');
  win.document.close();

  return false;
}

function openPrintPage(url) {
  var w = window.open(url, '', 'innerHeight=550, height=550, width=620, innerWidth=620, scrollbars, menubar');

  return false;
}