<!--

function popVid(vidName) 
{
	var popWidth = (window.screen.width/2) - ((600/2) + 10);
    var popHeight = (window.screen.height/2) - ((240/2) + 50);
	newWindow = window.open("","","toolbar=0,resizable=0,location=0,menubar=0,status=0,width=600,height=240,left=" + popWidth + ",top=" + popHeight + ",screenX=" + popWidth + ",screenY=" + popHeight + ",scrollbars=0"); 
	newWindow.document.open(); 
	newWindow.document.write('<html><head><title>All Power 4 Teens</title></head>'); 
	newWindow.document.write('<link href="js_css/global.css" rel="stylesheet" type="text/css"><body>'); 
	newWindow.document.write('<div style="float:right;margin-right:15px;"><embed src="' + vidName + '" width="300" height="200" type="video/quicktime" controller="true" autoplay="true" cache="true" kioskmode="true"></embed></div>');
	newWindow.document.write('<div style="float:left;margin-left:15px;margin-top:95px"><br><br><img src="img/logo.gif" alt="All Power 4 Teens" border="0"><br>'); 
	newWindow.document.write('<a class="red" href="javascript:close()"><b>&gt;&gt; close window</b></div>'); 
	newWindow.document.write('</body></html>'); 
	newWindow.document.close(); 
	newWindow.focus(); 
} 
//-->