//--Popup


function info(url,instance,width,height,xpos,ypos){

	if (xpos == -1 && ypos == -1) {
	xcenter=(screen.width/2)-(width/2);
	ycenter=(screen.height/2)-(height/2);
	window.open(url,instance,"toolbar=no,location=no,directories=no,scrollbars=no,status=no,menubar=no,resizable=no,width="+width+",height="+height+",left="+xcenter+",top="+ycenter+"")
	}
	else {
	window.open(url,instance,"toolbar=no,location=no,directories=no,scrollbars=no,status=no,menubar=no,resizable=no,width="+width+",height="+height+",left="+xpos+",top="+ypos+"")
	}
}



/* visu öffner */ 

function galerie(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("/visu/popup.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("/visu/popup.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+"")
	}
}

