
function popUp(URL,scr,wi,he) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars="+scr+",location=0,statusbar=0,menubar=0,resizable=0,width="+wi+",height="+he+",left = 100,top = 100');");
}

function PopUpMovie() {
var iMyWidth;
var iMyHeight;
//half the screen width minus half the new window width (plus 5 pixel borders).
iMyWidth = (window.screen.width/2) - (75 + 10);
//half the screen height minus half the new window height (plus title and status bars).
iMyHeight = (window.screen.height/2) - (350 + 50);
//Open the window.
var win2 = window.open("http://www.singlepath.com/video/SinglePathIdol.html","1","status=no,height=400,width=500,resizable=no,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",toolbar=no,menubar=no,scrollbars=no,location=no,directories=no");
win2.focus();
}

