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 popRedBand() {
	popWindow("redband/redband.html", 570, 550, "redband");
}

function popAudio() {
	popWindow("widget/index.html", 494, 533, "robzombiezwarzone");
}

function popRedBand2() {
	popWindow("redband/redband.html", 570, 550, "redband2");
}

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");
}

function popIcons() {
	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 popMyspace() {
	popWindow("myspace/index.html", 544, 650, "myspace");
}
