// open video in new window
var win = null;
function vopen(t,l,w,h,embed_code)

{
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="#ffffff">')
     
  win2.document.writeln('<center>');
  win2.document.writeln(embed_code);
  win2.document.writeln('</center>');
   win2.document.writeln('</BODY>');
   win2.document.writeln('</HTML>');
   win2.document.close();
   }
// video window open script ends



