// -----------------------------------------------------------------
//						Redland Shire Council 
// -----------------------------------------------------------------
// Class    : Identify 
// Purpose  : Handles the hiding of the identify window.
// -----------------------------------------------------------------
// Calls    :
// Called by: the onclick event of the imgInfo image which is
//			  assigned in default.aspx
// -----------------------------------------------------------------
// Arguments:
// Globals  :
// Returns  :
// -----------------------------------------------------------------
// Notes    :
// -----------------------------------------------------------------
// History  :
// =================================================================

function ieMouseUpIdentify(event)
{
	//Calculate where the map window actually is, and store this in the offset variables
	imgMapXOffset = parseInt(document.getElementById('divImgMap').style.left) + 2;
	imgMapYOffset = parseInt(document.getElementById('divImgMap').style.top) + 2;

	//Set the source of the identify window to show a list of features returned
	//from the click point which is passed as a query string
	var sURL = 'identifyLayer.aspx?xClick=' + (parseInt(event.clientX) - imgMapXOffset) + '&yClick=' + (parseInt(event.clientY) - imgMapYOffset);

	//Show the identify window
	showCommonDiv('Identify',550,400,150,63,sURL,true,true,true);
}