// Random

function RotatePic() {
var ImageTDTagID = "random";
var Images = new Array(
"/images/intro2.jpg",
"/images/intro4.jpg",
"/images/intro6.jpg",
"/images/intro7.jpg",
"/images/intro8.jpg",
"/images/intro9.jpg"
);
RandImage = Math.round(Math.random()*Images.length);
if( Images.length == RandImage ) RandImage = 0; ri = Images[RandImage]; if (document.images) { document.images[ImageTDTagID].src=ri;
}
}


function img_gallery(img_id){						
	xpos=100;
	ypos=100;
	width=10;
	height=10;
	
	if (xpos == -1 && ypos == -1) {
		xcenter=(screen.width/2)-(width/2);
		ycenter=(screen.height/2)-(height/2);
		window.open("popup_kassenplatzsystem.asp?img="+img_id,1,"toolbar=no,location=no,directories=no,scrollbars=no,status=no,menubar=no,resizable=no,width=50,height=50,left="+xcenter+",top="+ycenter+"")
	}
	else {
		window.open("popup_kassenplatzsystem.asp?img="+img_id,1,"toolbar=no,location=no,directories=no,scrollbars=no,status=no,menubar=no,resizable=no,width=50,height=50,left="+xpos+",top="+ypos+"")
	}
}
