			function CloseIt() {
				
				document.getElementById('ContentImg').style.display='none';
				document.getElementById('ContentButClose').style.display='none';
				
			}


			function OpenIt(img,w,h) {
				
				var LEFT;
				LEFT = (798-w)/2;
				//LEFTB = LEFT+6;
				//var TOPB = h-12+45;
				LEFTB = LEFT;
				var TOPB = 0;
				var BCW = w-2;
				document.getElementById('ContentImg').style.display='block';
				document.getElementById('ContentImg').style.left=+LEFT+'px';
				document.getElementById('ContentImg').innerHTML='<img id="spacer" src="' + img + '" width="'+w+'" height="'+h+'" alt=" " title="" /><img class="spacer" src="./images/site/galover.gif" width="'+w+'" height="'+h+'" style="position:absolute;top:0;left:0;" alt=" " title="" />';
				document.getElementById('ContentButClose').style.display='block';
				document.getElementById('ContentButClose').style.left=+LEFTB+'px';
				document.getElementById('ContentButClose').style.top=+TOPB+'px';
				document.getElementById('ContentButClose').style.width=+BCW+'px';
				
			}

			function CloseSS(wlr) {
				
				window.location.replace('./gallery.php?galerie='+wlr);
				
			}