function GsImagePopup(Url, Name) {
	var MyWindow=false;
	try {
		MyWindow=window.open(Url, Name, "location=no,menubar=yes,directories=no,status=no");
	} catch(ex) {
		// Do nothing about errors
	}
	return (MyWindow==false);
} // GsImagePopup
