function popUpWindow(URL){
			var w = screen.width;
			var h = screen.height - 60;

  			popUpWin = window.open(URL, 'ESHOME', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=yes,copyhistory=yes,width=' + w + ',height=' +h +',top=,'+ 0 + ',left='+ 0);

			popUpWin.moveTo (0,0);
			popUpWin.focus();
		}
