
var WindowObjectReference = null; // global 

function popPlayer(strUrl, strWindowName) {

	WindowObjectReference = window.open(strUrl, strWindowName, "width=420,height=193,resizable=no,scrollbars=no,status=no");
	WindowObjectReference.focus();
	}

