<!-- Hide Script
// Detect if the browser is IE or not.
// If it is not IE, we assume that the browser is NS.
var IE = document.all?true:false

// If NS -- that is, !IE -- then set up for mouse capture
			var tempX = 0;
   			var tempY = 0;

	function move_in(img_name,img_src) {
	document[img_name].src=img_src;

		
		if(document.getElementById && document.all)
				tempX = document.body.scrollLeft;
			else
				tempX = pageXOffset;
				
			if(document.getElementById && document.all)
				tempY = document.body.scrollTop;
			else
				tempY = pageYOffset;
			
			if(document.getElementById && document.all)
				window_width = document.body.clientWidth;
			else
				window_width = window.innerWidth-20;
	
			if(document.getElementById && document.all)
				window_height = document.body.clientHeight;
			else
				window_height = window.innerHeight;
			document.getElementById("cleardiv").style.top = tempY + (window_height / 2) - 100;
            if(IE)
            {
                tempX = event.clientX + document.body.scrollLeft;
			    document.getElementById("cleardiv").style.left = tempX + 130;
            }
	}

	function move_out(img_name,img_src) {
	document[img_name].src=img_src;
	}
//End Hide Script-->