
var newWindow;
function makeNewWindow() {
  newWindow = window.open("","Video","toolbar=no,status=no,scrollbars=no,location=no,menubar=no,directories=no,width=320,height=260");
};

function playVideo(title) {

  makeNewWindow();
  newWindow.focus();
  
  var newContent = "<html><head><title>Full Blown Productions</title><style type='text/css'>* {padding:0;margin:0;} body{background-color:black;}</style>";
  newContent += "</head>";
  newContent += "<body>";
  newContent += '<ob'+'ject classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6" id="player" width="320" height="260">';
  newContent += '<param name="url" value="videos/'+title+'.mpg" />';
  newContent += '<param name="src" value="videos/'+title+'.mpg" />';
  newContent += '<param name="controller" value="true" />';
  newContent += '<param name="autostart" value="true" />';
  newContent += '<!--[if !IE]>-->';
  newContent += '<ob'+'ject type="video/x-mpeg" data="videos/'+title+'.mpg" width="320" height="260">';
  newContent += '<param name="src" value="videos/'+title+'.mpg" />';
  newContent += '<param name="autostart" value="true" />';
  newContent += '<param name="controller" value="true" />';
  newContent += '</ob'+'ject>';
  newContent += '<!--<![endif]-->';
  newContent += '</ob'+'ject>';
  newContent += '</body></html>';
  newWindow.document.write(newContent);
  newWindow.document.close();
};

function playVideoMov(title) {

  makeNewWindow();
  newWindow.focus();
  
  var newContent = "<html><head><title>Full Blown Productions</title><style type='text/css'>* {padding:0;margin:0;} body{background-color:black;}</style>";
  newContent += "</head>";
  newContent += "<body>";
  newContent += '<ob'+'ject width="320" height="256" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab">';
  newContent += '<param name="url" value="videos/'+title+'.mov" />';
  newContent += '<param name="src" value="videos/'+title+'.mov" />';
  newContent += '<param name="controller" value="true" />';
  newContent += '<param name="autoplay" value="true" />';
  newContent += '<emb'+'ed width="320" height="256" type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download/"';
  newContent += 'src="videos/'+title+'.mov"';
  newContent += 'controller="true"';
  newContent += 'autoplay="true">';
  newContent += '</em'+'bed>';
  newContent += '</ob'+'ject>';
  newContent += '</body></html>';
  newWindow.document.write(newContent);
  newWindow.document.close();
};