function doZoomout()
{
	document.getElementById("zoomin").src = "images/ToolBox/zoom_off.gif"
	document.getElementById("zoomout").src = "images/ToolBox/zoomout_on.gif"
	document.getElementById("Identify").src = "images/ToolBox/identify_off.gif"
	document.getElementById("imgDiv").style.cursor = "crosshair";
	window.status = "Current Cursor Function:Zoom Out"	
	document.frmMap.strAction.value = "zoomout";
	
	var inhtml;
	
		inhtml =" <table width=100%><tr><td><table width=100%><tr><td align=left><b> Zoom Out </td><td align=right><img src='images/toolbox/zoomout_off.gif'></td></tr></table></td></tr>"
		inhtml = inhtml + "<tr height='2'><td bgcolor='#006dad' width='100%'></td></tr>"
		inhtml = inhtml + "<tr><td >Click on the Map <br>and drag the cursor</td></tr>"
		inhtml = inhtml + "<tr><td align=center><img src='images/zoomouthint.gif'></td></tr>"
		inhtml = inhtml + "<tr height='2'><td bgcolor='#006dad' width='100%'></td></tr>"
		inhtml = inhtml + "</table>";
	if(usehint == "true")
	{
	//document.getElementById("div1").style.visibility = 'visible';	
		document.getElementById("hint").innerHTML = inhtml;
	}
}