// JavaScript Document

function popup (url, width, height) {
	
	hnd = window.open (url, 'newZoomWin', 'menubar=no,toolbar=no,scrollbars=yes,status=no,location=no,width=' + width + ',height=' + height);
	hnd.focus();

}