function popUp(URL,type) {
	
	URL = "http://www.worldbank.org/eca/impact/2008/" + URL + "/" + type + "/index.html";
	
	if (type == "video") {
		intWidth = 520;
		intHeight = 400;
	}
	
	if (type == "slideshow") {
		intWidth = 585;
		intHeight = 445;
	}	
	
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "','toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=" + intWidth + ",height=" + intHeight + "');");
}