function doMail(world, location)
{
	var url = "";
	world = world.toLowerCase();
	if (world = "episode iii" ) {
		world = "episode-iii";
	}

	
	if(typeof(location) != "undefined") {
		url = "/meta/rd/emailthis/emailthis.jsp" + "?title=" + escape (document.title) + "&url=" + location + "&world=" + escape (world);
	} else {
		url = "/meta/rd/emailthis/emailthis.jsp" + "?title=" + escape (document.title) + "&url=" + escape (document.location) + "&world=" + escape (world);
	}

	world = world.toLowerCase();
	
	var screenWidth		=	(screen.width - 514) / 2;
	var screenHeight	=	(screen.height - 351) / 2;

	

	newwin = window.open(url,"mailer","width=514,height=351,toolbar=no,resizable=no,scrollbars=no,location=no,directories=no,menubar=no,top="+screenHeight+",left="+screenWidth+"");
}
function popBeacon(url) {
	var beaconWin = null;
	var screenWidth		=	(screen.width - 625) / 2;
	var screenHeight	=	(screen.height - 480) / 2;

	beaconWin = window.open(url,"beacon","width=625,height=480,toolbar=no,resizable=yes,scrollbars=yes,location=no,directories=no,menubar=no,top="+screenHeight+",left="+screenWidth+"");
}

