<!--
<!-- CREATES WINDOW WITH QUICKTIME EMBEDED -->
var _w = null;
var _wHeight = null;
var _wWidth = null;
var _qtHeight = null;
var _win1 = null;
var _wint = null;
function qt_movieWindow(title, movieFile, width, height) {
  _wWidth = (parseInt(width) + 60);
  _wHeight = (parseInt(height) + 75);
  _qtHeight = (parseInt(height) + 16); //--THIS ADDS HEIGHT FOR THE QUICKTIME UI--//
  _winl = (screen.width - _wWidth) / 2;
  _wint = (screen.height - _wHeight) / 2;
  _w = window.open('', '','scrollbars=no,resizable=no,width=' + _wWidth + ',height='+ _wHeight + ',top=' + _wint + ',left='+_winl);
  _w.document.write('<html><head><title>'+ title +'</title></head>');
  _w.document.write('<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">');
  _w.document.write('</HEAD>');
  _w.document.write('<BODY bgcolor="#3F507E" link="#CCCCCC" vlink="#999999" alink="#999999">');
  _w.document.write('<div align="center">');
  _w.document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="' + _qtHeight + '" width="' + width +'">');
  _w.document.write('<param name="src" value="' + movieFile + '">');
  _w.document.write('<param name="autoplay" value="true">');
  _w.document.write('<param name="controller" value="true">');
  _w.document.write('<param name="loop" value ="true">');
  _w.document.write('<embed height="' + _qtHeight + '" width="' + width +'" src="' + movieFile + '" pluginspage="http://www.apple.com/quicktime/download/" type="video/quicktime" controller="true" autoplay="true" loop="true" bgcolor="313F62"></object>');
  _w.document.write('<br><img src="images/spacer.gif" width="1" height="5"><table width="'+ width +'"border="0" cellspacing="0" cellpadding="0"><tr><td><div align="left"><font color="#FFFFFF" size="-2"><a href="' + movieFile + '"><font face="Geneva, Arial, Helvetica, sans-serif">right click to save</font></a></font><img src="images/spacer.gif" width="20" height="1"></div></td><td width="88"><font color="#FFFFFF" size="-1"><a href="http://www.apple.com/quicktime/download/" target="_blank"><img src="images/get_QT.gif" width="88" height="31" border="0"></a></font></td></tr></table></div></body></html>' );
  _w.document.close();
}
//-->

		
<!--
<!-- CREATES WINDOW WITH WindowsMedia EMBEDED -->
var _w = null;
var _wHeight = null;
var _wWidth = null;
var _wmHeight = null;
var _win1 = null;
var _wint = null;
function wmv_movieWindow(title, movieFile, width, height) {
  _wWidth = (parseInt(width) + 60);
  _wHeight = (parseInt(height) + 104);
  _wmHeight = (parseInt(height) + 45); //--THIS ADDS HEIGHT FOR THE WindowsMedia UI--//
  _winl = (screen.width - _wWidth) / 2;
  _wint = (screen.height - _wHeight) / 2;
  _w = window.open('', '','scrollbars=no,resizable=no,width=' + _wWidth + ',height='+ _wHeight + ',top=' + _wint + ',left='+_winl);
  _w.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">');
  _w.document.write('<html><head><title>'+ title +'</title>');
  _w.document.write('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">');
  _w.document.write('</head>');
  _w.document.write('<BODY bgcolor="#3F507E" link="#CCCCCC" vlink="#999999" alink="#999999">');
  _w.document.write('<div align="center">');
  _w.document.write('<object id="MediaPlayer" width='+ width +' height=' + _wmHeight +' classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" standby="Loading Microsoft® Windows® Media Player components..." type="application/x-oleobject" >' );
  _w.document.write('<PARAM NAME="filename" VALUE="' + movieFile + '">');
  _w.document.write('<PARAM NAME="autoStart" VALUE="true">');
  _w.document.write('<PARAM NAME="showControls" VALUE="true">');
  _w.document.write('<PARAM NAME="ShowStatusBar" value="false">');
  _w.document.write('<PARAM NAME="Autorewind" VALUE="false">');
  _w.document.write('<PARAM NAME="ShowDisplay" VALUE="false">');
  _w.document.write('<PARAM NAME="loop" VALUE="true">');
  _w.document.write('<EMBED SRC=' + movieFile + ' width='+ width +' height=' + _wmHeight + ' type="application/x-mplayer2" name=MediaPlayer autostart=1 showcontrols=1 showstatusbar=0 autorewind=0 showdisplay=0 loop=1 bgcolor="313F62"></EMBED></object>');
  _w.document.write('<br><img src="images/spacer.gif" width="1" height="5"><table width="'+ width +'"border="0" cellspacing="0" cellpadding="0"><tr><td><div align="left"><font color="#FFFFFF" size="-2"><a href="' + movieFile + '"><font face="Geneva, Arial, Helvetica, sans-serif">right click to save</font></a></font><img src="images/spacer.gif" width="20" height="1"></div></td><td width="88"><font color="#FFFFFF" size="-1"><a href="http://www.microsoft.com/windows/windowsmedia/9Series/download" target="_blank"><img src="images/get_WMP.gif" width="88" height="31" border="0"></a></font></td></tr></table></div></body></html>' );
  _w.document.close();
}
//-->

<!--
<!-- CREATES CRITIQUE WINDOW WITH QUICKTIME EMBEDED -->
var _w = null;
var _wHeight = null;
var _wWidth = null;
var _qtHeight = null;
var _win1 = null;
var _wint = null;
function qt_critWindow(title, movieFile, width, height) {
  _wWidth = (parseInt(width) + 380);
  _wHeight = (parseInt(height) + 140);
  _qtHeight = (parseInt(height) + 16); //--THIS ADDS HEIGHT FOR THE QUICKTIME UI--//
  _winl = (screen.width - _wWidth) / 2;
  _wint = (screen.height - _wHeight) / 2;
  _w = window.open('', '','scrollbars=no,resizable=yes,width=' + _wWidth + ',height='+ _wHeight + ',top=' + _wint + ',left='+_winl);
  _w.document.write('<html><head><title>'+ title +'</title></head>');
  _w.document.write('<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">');
  _w.document.write('</HEAD>');
  _w.document.write('<BODY bgcolor="#313F62" link="#CCCCCC" vlink="#999999" alink="#999999">');
  _w.document.write('<div align="center">');
    _w.document.write('<table border="0" cellspacing="0" cellpadding="0"><tr><td colspan="5" bgcolor="#5B6B93"><img src="images/spacer.gif" width="20" height="20"></td></tr><tr><td rowspan="3" bgcolor="#5B6B93"><img src="images/spacer.gif" width="20" height="20"></td><td rowspan="3"><div align="center"><img src="images/spacer.gif" width="20" height="20"><BR><img src="images/spacer.gif" width="10" height="8">');
  _w.document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="' + _qtHeight + '" width="' + width +'">');
  _w.document.write('<param name="src" value="' + movieFile + '">');
  _w.document.write('<param name="autoplay" value="true">');
  _w.document.write('<param name="controller" value="true">');
  _w.document.write('<param name="loop" value ="true">');
  _w.document.write('<embed height="' + _qtHeight + '" width="' + width +'" src="' + movieFile + '" pluginspage="http://www.apple.com/quicktime/download/" type="video/quicktime" controller="true" autoplay="true" loop="true"></object>');
    _w.document.write('<img src="images/spacer.gif" width="10" height="8"><table width="400"border="0" cellspacing="0" cellpadding="0"><tr><td><div align="left"><img src="images/spacer.gif" width="20" height="1"><font color="#FFFFFF" size="-2">');
  _w.document.write('<a href="' + movieFile + '"><font face="Geneva, Arial, Helvetica, sans-serif">right click to save</font></a></font></div></td>' );
    _w.document.write('<td width="88"><font color="#FFFFFF" size="-1"><a href="http://www.apple.com/quicktime/download/" target="_blank"><img src="images/get_QT.gif" width="88" height="31" border="0"></a></font></td>');
    _w.document.write('</tr></table></div></td>');
	  _w.document.write('<td rowspan="3" bgcolor="#5B6B93"><strong><img src="images/spacer.gif" width="20" height="8"></strong></td>');
  _w.document.write('<td bgcolor="#5B6B93"><div align="center"><strong> </strong>');
  _w.document.write('<table width="280" border="0" cellpadding="0" cellspacing="0" bgcolor="cccccc">');
  _w.document.write('<tr>');
  _w.document.write('<td><FONT FACE="verdana" SIZE="1" color="#828282"><strong><img src="images/spacer.gif" width="20" height="20"></strong></FONT><br>');
  _w.document.write('<strong> <img src="images/spacer.gif" width="10" height="8"><FONT color=000000 FACE="verdana" SIZE="2">Eriks\'s Critique...<br>');
  _w.document.write('</FONT></strong><FONT FACE="verdana" SIZE="1" color="#828282"><strong><img src="images/spacer.gif" width="20" height="8"></strong>August ');
  _w.document.write('13, 2004 - 05:01 AM<br>');
  _w.document.write('<strong><img src="images/spacer.gif" width="20" height="20"></strong> ');
  _w.document.write('</FONT></td>');
  _w.document.write('</tr>');
  _w.document.write('</table>');
  _w.document.write('<strong><br>');
  _w.document.write('</strong></div></td>');
  _w.document.write('<td rowspan="3" bgcolor="#5B6B93"><img src="images/spacer.gif" width="20" height="8"></td>');
  _w.document.write('</tr>');
  _w.document.write('<tr> ');
  _w.document.write('<td><div align="center"><font color="#FFFFFF" size="-2" face="Geneva, Arial, Helvetica, sans-serif">- ');
  _w.document.write('ADD SUGGESTIONS BELOW -</font></div>');
  _w.document.write('<form name="form1" method="post" action="">');
  _w.document.write('<div align="center"><strong><img src="images/spacer.gif" width="10" height="8">');
  _w.document.write('<textarea name="vcommentAdd" cols="30" rows="10" wrap="VIRTUAL"></textarea>');
  _w.document.write('<img src="images/spacer.gif" width="10" height="8"><br>');
  _w.document.write('<input name="sendSuggest" type="submit" value="Send">');
  _w.document.write('<input name="clearSuggest" type="reset" value="Clear">');
  _w.document.write('</strong></div>');
  _w.document.write('</form></td>');
  _w.document.write('</tr>');
  _w.document.write('<tr>');
  _w.document.write('<td>&nbsp;</td>');
  _w.document.write('</tr>');
  _w.document.write('<tr> ');
  _w.document.write('<td colspan="5" bgcolor="#5B6B93"><div align="center"><FONT FACE="verdana" SIZE="1" color="#ffffff"><strong><img src="images/spacer.gif" width="20" height="20">&lt;');
  _w.document.write('previous - next &gt;</strong></FONT><img src="images/spacer.gif" width="20" height="20"></div></td>');
  _w.document.write('</tr>');
  _w.document.write('</table>');
  _w.document.write('</div></body></html>');
  _w.document.close();
}
<!--
<!-- CREATES CRITIQUE WINDOW WITH QUICKTIME EMBEDED -->
var _w = null;
var _wHeight = null;
var _wWidth = null;
var _qtHeight = null;
var _win1 = null;
var _wint = null;
function qt_critWindowNEW(title, movieFile, width, height, id) {
  _wWidth = (parseInt(width) + 380);
  _wHeight = (parseInt(height) + 160);
  _qtHeight = (parseInt(height) + 16); //--THIS ADDS HEIGHT FOR THE QUICKTIME UI--//
  _winl = (screen.width - _wWidth) / 2;
  _wint = (screen.height - _wHeight) / 2;
  _winlink = 'critWindow.php?title='+title+'&movie='+movieFile+'&critid='+id;
  _w = window.open(_winlink, '','scrollbars=no,resizable=yes,width=' + _wWidth + ',height='+ _wHeight + ',top=' + _wint + ',left='+_winl);
  _w.document.close();
}
//-->


<!--
<!-- CREATES WINDOW  -->
var _w = null;
var _wHeight = null;
var _wWidth = null;
var _qtHeight = null;
var _win1 = null;
var _wint = null;
function imageWindow(title, image, width, height) {
  _wWidth = (parseInt(width) + 20);
  _wHeight = (parseInt(height) + 20);
  _winl = (screen.width - _wWidth) / 2;
  _wint = (screen.height - _wHeight) / 2;
  _w = window.open('', '','scrollbars=no,resizable=no,width=' + _wWidth + ',height='+ _wHeight + ',top=' + _wint + ',left='+_winl);
  _w.document.write('<html><head><title>'+ title +'</title></head>');
  _w.document.write('<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">');
  _w.document.write('</HEAD>');
  _w.document.write('<BODY bgcolor="#313F62" link="#CCCCCC" vlink="#999999" alink="#999999">');
  _w.document.write('<img src="'+ image +'" width="'+ width +'" height="'+ height +'"></body></html>' );
  _w.document.close();
}
//-->