function displayMap(imagePath)
{
	if(imagePath=='clear')
	{
	    document.getElementById('jScriptMap').style.display='none';
	}
	else
	{
		
	    eval('document.getElementById(\'mapImage\').src=\'/pressroom/macys/template/images/' + imagePath + '\'');
	    document.getElementById('jScriptMap').style.display='inline';
	}
}