var faux = null;

function openyoutube(parm,stitle) {
  faux = window.open('','newWin','dependent,resizable=no,top=50,left=50,width=425,height=350');
  var fd = faux.document;
  fd.open();
  fd.write('<html><head><title>' + stitle + '</title></head>');
  fd.write('<body bgcolor="#ffffff" onLoad="window.focus()" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
  fd.write('<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/' + parm + '"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/' + parm + '" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object>');
  fd.write('</body></html>');
  fd.close();
}

