	function closeUp()
	{
		self.close();
	}
	
	function enlarge(url)
	{
			var width = 650;
			var height = 660;
			var newLeft = (window.screen.availWidth - width) / 2;
			var newHeight = (window.screen.availHeight - height) / 2;
			var objPopup = window.open(url + '','adminWin','height=' + height + ',width=' + width + ',left=' + newLeft +',top=' + newHeight + ',menubar=0,status=0,scrollbars=0,directories=0');
			objPopup.focus();
	}
