var newWindow;
function newVideoWindow(id) {
	window.resizeTo(1000,window.screen.height);
    newWindow = window.open("/video/popup/"+id,"ntlpopup","toolbar=no,menubar=no,width=280,height=210,resizable=no,location=no,scrollbars=yes");
    newWindow.moveTo(1000, 0)
    //newWindow.focus();
}

function focusVideo() {
	if ( newWindow.location != "about:blank" ) {
		newWindow.focus();
	} else {
		newWindow.close();
	}
}
