﻿var newwindow = null

function pop()
{
if (! window.focus)return true;
newwindow=window.open('player.aspx', 'Player', 'width=330,height=500,left=0,top=0,scrollbars=no,resizable');
}

function popfocus() {
	 newwindow.focus(); 
	
}
