﻿// JScript File

function displayMouseOverImages (distanceImage, distanceImageName, iconImage, iconImageName) 
{
    if (distanceImage != '')
    {
        var imagePath = document.forms[0][distanceImage].src;
        var indexOfLastSlash = imagePath.lastIndexOf('/') + 1;
        document.forms[0][distanceImage].src = imagePath.substring(0, indexOfLastSlash) + distanceImageName;
    }
    
    if (iconImage != '')
    {
        var imagePath = document.forms[0][iconImage].src;
        var indexOfLastSlash = imagePath.lastIndexOf('/') + 1;
        document.forms[0][iconImage].src = imagePath.substring(0, indexOfLastSlash) + iconImageName;
    }
}



function showLeftMenu(id) {
var d = document.getElementById(id);
	for (var i = 1; i <= 10; i++) {
		if (document.getElementById('smenu'+i)) 
		{
		    document.getElementById('smenu'+i).style.display='none';
		}
	}
if (d) {d.style.display='block';}
}

function OpenScreenshot(imageName)
{
    ScreenshotWindow = window.open('openWindow.aspx?imgName=' + imageName, "projectImage", "width=880,height=500,scrollbars");
    ScreenshotWindow.focus();
}

//-->


