﻿// JavaScript Document
	var mouseleft;
	var mousetop;
	function followcursor(){
	//move cursor function for IE
		mouseleft = window.screenLeft + event.clientX; 
		mousetop = window.screenTop + event.clientY;	
	}
		
	if (document.all){
		document.onmousemove = followcursor;
	}	

	function getDataValue(objName, vdate){
		document.all[objName].value = vdate;
	}
	

