// Create New Window

<!--
var leftPos = 0;
var topPos = 0;

if (screen) 
	{
		leftPos = (screen.width/2)-350;
		topPos = (screen.height/2)-200;
	}

function videoWin(url) 
{
	detailWin = window.open(url,'video','width=700,height=400,scrollbars=no,menubar=no,toolbar=no,resizable=yes,left='+leftPos+',top='+topPos);
	detailWin.focus();
}
-->