function SetBodyHeight () {
/*
	var frame = document.getElementById("BodyDiv");  	
	frame.style.height = document.body.clientHeight - 250; 	
	var frame = document.getElementById("MainArea");
	frame.style.height = document.body.clientHeight - 280; 	
	*/
}
onresize=SetBodyHeight;

function GsImagePopup(Url, Name) {
	var MyWindow=false;
	try {
		MyWindow=window.open("/"+Url, Name, "location=no,menubar=no,directories=no,status=no");
	} catch(ex) {
		// Do nothing about errors
	}
	return (MyWindow==false);
} // GsImagePopup
