// JavaScript Document

function openStaffVideo(theURL,winName) { //v2.0
leftVal = (screen.width - 800) / 2;
topVal = (screen.height - 600) / 2;
features = 'toolbar=no,menubar=no,resizable=no,scrollbars=yes,status=no,titlebar=no,width=800,height=600,left=' + leftVal + ',top=' + topVal;
//alert(screen.width + 'x' + screen.height);
newWindow = window.open(theURL, winName, features);
}