function paintG(aBilder){
	var s = "";
	s += "<IMG class='copyImg' id='copyImg' width=2px height=2px src='images/galerie/img.jpg'>";
	s += "<table border=0 width='460' cellpadding='0' cellspacing='0'><tr>"
	for(var i=0; i<aBilder.length; i++){
		s += "<td width='230' height='230' background='images/galerie/imagebg.png' align='left' valign='top'>";
		s += "<IMG src='images/galerie/small/" + aBilder[i] + ".jpg' onClick='imageClick("+i+",event)' style='cursor:pointer'>";
		s += "</td>";
		if(i%2 == 1){
			s += "</tr><tr>"
		}
	}
	s += "</tr></table>";
	document.getElementById("pGalerie").innerHTML = s;
}
function imageClick(i,e){
	var s = "";
	
	s += "<TABLE cellpadding=0 cellspacing=0>";
	s += "<TR>";
	s += "<TD style='width:8px; height:6px; background-Image:url(images/galerie/ol.png)'></TD>";
	s += "<TD style='background-Image:url(images/galerie/om.png)'></TD>";
	s += "<TD style='width:11px; height:6px; background-Image:url(images/galerie/or.png)'></TD>";
	s += "</TR><TR>";
	s += "<TD style='background-Image:url(images/galerie/ml.png)'></TD>";
	s += "<TD>";
	
	s += "<TABLE width=100% style='background-color:#ffffff; border-color:#000000;border-width:1px;border-style:solid;' onClick='g_hidePopup()'>";
	s += "<TR><TD>";
	s += "<IMG src='images/galerie/big/"+aBilder[i]+".jpg' height='500px' onMouseMove='antiCopy(event)'>";
	s += "</TD></TR>";
	s += "<TR><TD align=center><HR>";
	s += "<INPUT type='BUTTON' onClick='g_hidePopup()' value='Schliessen'>";
	s += "</TD></TR>";
	s += "</TABLE>";
	
	s += "</TD>";
	s += "<TD style='background-Image:url(images/galerie/mr.png)'></TD>";
	s += "</TR><TR>";
	s += "<TD style='width:8px; height:14px; background-Image:url(images/galerie/ul.png)'></TD>";
	s += "<TD style='background-Image:url(images/galerie/um.png)'></TD>";
	s += "<TD style='width:8px; height:14px; background-Image:url(images/galerie/ur.png)'></TD>";
	s += "</TR>";
	s += "</TABLE>";
	
	var obj = document.getElementsByName("pView")[0];
	obj.innerHTML = s;
	g_showPopup(e);
}
function g_showPopup(e){
	var obj = document.getElementsByName("pView")[0];
	obj.style.visibility = "visible";
	obj.style.position = "absolute";
	obj.style.top = (e.pageY-300)+ "px";
}
function g_hidePopup(){
	var obj = document.getElementsByName("pView")[0];
	obj.innerHTML = "";
	obj.style.visibility = "hidden";
}
function antiCopy(e){
	var obj = document.getElementById("copyImg");
	obj.style.left = e.pageX + "px";
	obj.style.top = e.pageY + "px";
}