function mediaPopUp(URL,w,h) {
day = new Date();
id = day.getTime();
var sw = 1024;
var sh = 800;
if( screen.width )
{
	sw = screen.width;
	sh = screen.height;
}
var l = Math.ceil((sw-w)/2);
var t = Math.ceil((sh-h)/2);
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width="+w+",height="+h+",left = "+l+",top = "+t+"');");
return false;
}
function flipperPopUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=900,height=500,left = 233,top = 134');");
return false;
}