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 popAIM() {
	popWindow("im_icons/index.html", 600, 400, "im_icons");
}

function showWallpaper(number)
{
	popWindow(pageRoot + "wallpapers/wallpaper.html?wid=0"+number+"&size=1024", 544, 650, "wallpapers");
}

function popValentines() {
	popWindow("ecards/valentine.php", 430, 640, "valentine_ecard");
}

function popLineup() {
	popWindow("ecards/index.php", 800, 640, "lineup_ecard");
}

function popMugshot() {
	popWindow("ecards/mugshot.php", 430, 640, "mugshot_ecard");
}

