function showObject(div_name) {
    var dS = document.getElementById(div_name);    
    dS.style.display = 'inline';
}

function hideObject(div_name) {    
    var dS = document.getElementById(div_name);    
    dS.style.display = 'none';
}

function selectImage(sFilePath, sPicName, nCounter, nTotal) {
	pic = eval("document.getElementById('"+sPicName+"')");
	if (pic)
	{
		if (sFilePath != '')
		{
			pic.src = sFilePath;
			if ((nCounter > 0) && (nTotal > 0)) {
				for(x=1; x <= nTotal; x++) {
					document.getElementById('imagecount_'+x).className = '';
				}
				document.getElementById('imagecount_'+nCounter).className = 'imageNavigation_active';
				document.getElementById('lightboxLink').href = sFilePath;
			}
		}
		else
		{
			pic.src = ""
		}
	}
}
