function showImage(name,imgAnchor){
	var id = document.getElementById(name+"PopUp");
	if(id.style.display == "none"){
		id.style.display = "block";
		document.body.style.backgroundColor = "#CCCCCC";
		document.getElementById("holder").style.display = "none";
	}else{
		id.style.display = "none";
		document.body.style.backgroundColor = "transparent";
		document.getElementById("holder").style.display = "block";
		
		
		var endSlash = location.href.lastIndexOf("/");
		var startSlash = location.href.indexOf("/",7);
		var folder = location.href.substring(startSlash,endSlash);
		//alert(location.href+ ' ' + endSlash + ' ' + startSlash);#
		document.location = folder+"/#"+imgAnchor;
	}
}