function popWin(url, name, w, h)
	{
		// Scrollbars
		s = 0;

		// Dimensions
		if ( w > screen.availWidth - 50 )
			{ w = screen.availWidth - 50; s = 1; }

		if ( h > screen.availHeight - 50 )
			{ h = screen.availHeight-50; s = 1;	}

		// Establish options
		winOptions  = "toolbar=0, directories=0, status=0, location=0, resizable=0, scrollbars=1, menubar=0";
		winOptions += ", left=" + (screen.availWidth/2-(w/2)) + ", top=" + (screen.availHeight/2-(h/2));
		winOptions += ", width=" + w;
		winOptions += ", height=" + h;

		// Open new window
		popupWin = window.open(url, name, winOptions);

		// Focus
		popupWin.focus();

		return false;
	}