function LoadImage(img_path,divid)
{
	var bgb = document.getElementById("bgb");
	bgb.style.display = "block";
	bgb.setAttribute("title","Zum Schließen klicken!");	
	
	var root = document.getElementById(divid);
	root.style.display = "block";
	
    var top = 50;
    if(!isBrowser("MSIE")) top = (window.pageYOffset + 50);
    else top = (document.documentElement.scrollTop + 50);	
	
	root.style.top = top + "px";
	root.innerHTML = "";	
	
		img = document.createElement("img");
		img.setAttribute("src",img_path);
		img.style.border = "0px";
		img.style.padding = "0px";
		
		
		a = document.createElement("a");
		a.href = "javascript: CloseImage('" + divid + "')";
		a.appendChild(img);
	
	root.appendChild(a);
	
}

function CloseImage(divid)
{
	root = document.getElementById(divid);
	root.style.display = "none";
	
	var bgb = document.getElementById("bgb");	
	bgb.style.display = "none";
}

function isBrowser(name)
{
	//"Opera" "Gecko" "MSIE"
	if(navigator.appName.indexOf(name)) return true;
	return false;
}
