// open video in new window script starts
var win = null;
function vopen(t,l,w,h,n)

{
var win2
var strFeatures	
		strFeatures ="width="+w+", height="+h+", top="+t+", left="+l+", resizable=no, toolbar=no, location=no, scrollbars=no, status=no, menubar=no";
w=w-50;
h=h-50;
   win2=window.open('','null',strFeatures);
   win2.focus();
   win2.document.open();
   win2.document.writeln('<HTML>');
   win2.document.writeln('<HEAD>');
   win2.document.writeln('<link rel=stylesheet type=text/css href=standard.css>');
   win2.document.writeln('<meta http-equiv="imagetoolbar" content="no">');
   win2.document.writeln('<TITLE>Video Window - Close When Done</TITLE>');
   win2.document.writeln('</HEAD>');
   win2.document.writeln('<BODY topmargin="0" leftmargin="0" bgcolor="#8dc530">')
     
  win2.document.writeln('<center>');
  win2.document.writeln('<br>&nbsp;');
  win2.document.writeln('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="');
  win2.document.write(w); 
  win2.document.write('" height="');
  win2.document.write(h);
  win2.document.write('" id="');
  win2.document.write(n);
  win2.document.write('" align="middle" style="border: 4px solid; border-color: #00af35;" >');
  win2.document.writeln('<param name="allowScriptAccess" value="sameDomain" />');
  win2.document.writeln('<param name="wmode" value="transparent"/>');
  win2.document.writeln('<param name="movie" value="');
   win2.document.write(n);
  win2.document.write('.swf');
  win2.document.write('" /><param name="quality" value="high" />'); 0
  win2.document.writeln('<param name="bgcolor" value="#8dc530" />');
  win2.document.writeln('<embed src="');
  win2.document.write(n);
  win2.document.write('.swf');
  win2.document.write('" quality="high" bgcolor="#8dc530" width="400" height="334" name="');
  win2.document.write(n);
  win2.document.write('" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
  win2.document.writeln('</object>');
  win2.document.writeln('</center>');
   win2.document.writeln('</BODY>');
   win2.document.writeln('</HTML>');
   win2.document.close();
   }
// video window open script ends



