// JavaScript Document
	var where = ""; // which link
	function checkwhere(e) {
        if (document.layers){
			xCoord = e.x;
			yCoord = e.y;
		}else if (document.all){
			xCoord = event.clientX;
			yCoord = event.clientY;
		}else if (document.getElementById){
			xCoord = e.clientX;
			yCoord = e.clientY;
		}
        self.status = "Associated News Agency Pvt. Ltd. Nepal's First Internet Television"; 
	}//end of function
	document.onmousemove = checkwhere;
	if(document.captureEvents) {document.captureEvents(Event.MOUSEMOVE);}