definedCustomMouseDown = true;
definedCustomMouseUp = true;
definedCustomMouseMove = true;
definedCustomMouseOut = true;
definedCustomSubmit = true;

function customMouseDown(e)
{

}

function CustomSubmitForm()
{

}

function customMouseMove(e)
{
	var mapdiv = document.getElementById("themap");
	
	if(tool == "pan")
	{
		mapdiv.style.cursor = "move";
	}
	else if(tool == "identify")
	{
		mapdiv.style.cursor = "help";
	}
	else
	{
		mapdiv.style.cursor = "";
	}
}

function customMouseUp(e)
{
}

function customMouseOut(e)
{

}

function distance(x1, y1, x2, y2)
{
	return Math.sqrt(Math.pow(x2 - x1, 2.0) + Math.pow(y2 - y1, 2.0));
}