/* ********************************************************* */
/* ** OPEN A NEW MAGNIFY WINDOW                           ** */
/* ********************************************************* */

/*
	This function opens a small pop-up window.  It checks
	for the screen's height and if there's available space
	it increases the height of the window.
*/

function popWindow(path, width, height) {

	var windowName= "popWindow";

	var features=	"toolbar=no,location=no,directories=no,"+

			"status=no,menubar=no,scrollbars=yes,"+

			"left=0,screenX=0,top=0,screenY=0,"+

			"resizable=yes,width="+width+",height="+height;

	var popWin= window.open(path,windowName,features);

	if (popWin) 

		popWin.focus();

	return popWin;
}
