<!--
function newinyt(myname, scroll, ytnum){
	var w = 500
	var h = 425
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+ h +', width = '+ w +', top = '+ wint +', left = '+ winl +', scrollbars = '+ scroll +', resizable';
	win = window.open('', '', winprops);
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); };
	var doc = win.document;
	doc.write('<head><title>');
	doc.write(myname);
	doc.write('</title></head>');
	doc.write('<body bgcolor="#110055" background="../gifs/bg147.gif"><br>');
	doc.write('<center><table width="380" height="325" border="2" cellpadding="0" cellspacing="0"><tr><td bgcolor="#050505">');
	doc.write('<center><object width="320" height="265"><param name="movie" value="http://www.youtube.com/v/' + ytnum + '"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/' + ytnum + '" type="application/x-shockwave-flash" wmode="transparent" width="320" height="265"></embed></object></center>');
	doc.write('</td></tr></table>');
	doc.write('<br><a href="javascript:void(0);" onclick="window.close();">')
	doc.write('<img border="0" src="images/clicktoclose.jpg" alt="Close Window"></a>');
	doc.write('</center>');
	doc.write('</body>');
	doc.close();
	}
//-->