/* ________________________________________________

        JS-IM-100604.js ~ revised 2010.06.04
   ________________________________________________
*/

// This function copyright 2006-2007 JavaScript Array ~ www.javascript-array.com
// Cf. http://www.javascript-array.com/scripts/window_open/
// Modified for use here
function Enlarge(source, width, height) {
	var thisImg = new Image(width, height);
	thisImg.src = source;
	var left = (screen.width - width) / 2;
	var top = (screen.height - height) / 2;
	var params = 'width=' + width + ', height=' + height;
	params += ', top=' + top + ', left=' + left;
	params += ', directories=no';
	params += ', location=no';
	params += ', menubar=no';
	params += ', resizable=no';
	params += ', scrollbars=no';
	params += ', status=no';
	params += ', toolbar=no';
	newwin = window.open(source, 'win', params);
	if (window.focus) { 
		newwin.focus(); 
	}
	return false;
}


