
function showMe(filename, location)
{
	document.getElementById("mainImg").src = filename;
	document.getElementById("mainImg").alt = location;
	document.getElementById("mainImgLink").href = filename;
	document.getElementById("mainImgLink").title = location;
	document.getElementById("fileNameBar").innerHTML = '<h4>' + location + '</h4>';
}


