/* provides params for video pop up window */
var player = null;
function playerReady(thePlayer) {
	player = window.document[thePlayer.id];
	addListeners();
}

/*var popWin = null; */
function createWindow(theUrl) {  
	if (player) { 
		player.sendEvent("STOP"); 
	}
	popWindow = window.open(theUrl, "popWin", "statusbar=0,toolbar=0,menubar=0,scrollbar=0,location=0,width=380,height=280,left=900,top=200,resizable=yes");
	popWindow.focus();
	
	/*document.write(theUrl);*/
	/*
	alert(theUrl);
	*/
}
