// JavaScript Document

function popUp(URL){
   var Left=window.screen.width/2-450;
   var Top=window.screen.height/2-250;
   var Configuration="'toolbar=0, menubar=0, location=0, directories=0, statusbar=0, staus=0, titlebar=0, resizeable=0, width=900, height=500, left=" + Left + ", top=" + Top;
window.open(URL,'Video',Configuration);
}

function popUpNoFrame(URL){
   var Left=window.screen.width/2-260;
   var Top=window.screen.height/2-161;
   var Configuration="'toolbar=0, menubar=0, location=0, directories=0, statusbar=0, staus=0, titlebar=0, resizeable=0, width=900, height=500, left=" + Left + ", top=" + Top;
window.open(URL,'Video',Configuration);
}

function popBlank(URL){
   pageTracker._trackPageview(URL);
   window.open(URL);
}