		var x = 0;
		function getLocation(evt) {

			var tempX = evt.clientX + document.body.scrollLeft;
			var tempY = evt.clientY + document.body.scrollTop;

			if ((tempX > 78 && tempX < 96 && tempY > 114 && tempY < 143) && x == 0) {
				x++;
			}
			else if ((tempX > 43 && tempX < 64 && tempY > 168 && tempY < 206) && x == 1) {
				x++;
			}
			else if ((tempX > 188 && tempX < 211 && tempY > 168 && tempY < 206) && x == 2) {
				x++;
			}
			else {
				x = 0;
			}

			if (x > 2) {
				document.frmLogin.style.display = "block";
				document.frmLogin.style.zindex = "0;"
			}
		}
