var pageRoot = "";

function popWindow( url, width, height, windowName )
{
    //get center coords
    var left = (screen.width - width) / 2;
    var top = (screen.height - height) / 2;
    
    win=window.open(url, windowName, 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=' + width + ',height=' + height + ',left=' + left + ',top=' + top);
}

function popScrollingWindow(url, width, height, windowName)
{
    //get center coords
    var left = (screen.width - width) / 2;
    var top = (screen.height - height) / 2;
    
    win=window.open(url, windowName, 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=' + width + ',height=' + height + ',left=' + left + ',top=' + top);
}

function openWindow(url)
{
    var rand = "_blank";
    win=window.open(url,rand,"directories=yes,location=yes,menubar=yes,scrollbars=yes,status=yes,toolbar=yes,resizable=yes");
}

function popPrivacy()
{
	openWindow(pageRoot + "http://www.lionsgatefilms.com/privacy.html");
}

function popTerms()
{
	openWindow(pageRoot + "http://www.lionsgatefilms.com/terms.html");
}

function popIcons()
{
	popWindow(pageRoot + "im_icons/index.html", 600, 400, "aim");
}

function popTickets()
{
	popWindow(pageRoot + "tickets/index.html", 360, 240, "tickets");
}
function popWallpaper(number, size)
{
	if(size==1) {
		var size_num="800x600";
	}else if(size==2) {
		var size_num="1024x768";
	}else {
		size_num="1280x1024";
	}
	openWindow(pageRoot + "wallpaper/wallpaper.html?wallpaper="+number+"_"+size_num+".jpg");
}
