var InformationBox = 
{
	openInformationBox: function (url, name, width, height)
	{
		var options = "status=0,toolbar=0,location=0,menubar=0,directories=0,resizable=0,height=" + height + ",width=" + width;

		var w;
		w = window.open(url, name, options, false);
		w.opener = this;
		return w;
	}
};

