                // Dispatch to a page in a new window.
		function popupPageInNamedWindow(id, windowName, width, height) {

		    var destPage = 'press_reliz.php?id=' + id;
		    var winl = (screen.width-width)/2;
		    var wint = (screen.height-height)/2;
		    var settings  ='height=' + height + ',';
			settings +='width=' + width + ',';
			settings +='scrollbars=yes,';
			settings +='resizable=no,';
			settings +='toolbar=yes,';
			settings +='menubar=yes';
		    var win=window.open(destPage,windowName,settings);
                }

