// JavaScript Document



	/* galerie */

function img_gallery(gallery,img_id,total){

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_hdu.asp?gallery="+gallery+"&img="+img_id+"&total="+total,1,"toolbar=no,location=no,directories=no,scrollbars=no,status=no,menubar=no,resizable=no,width=250,height=250,left="+xcenter+",top="+ycenter+"")
}
else {
	window.open("popup_hdu.asp?gallery="+gallery+"&img="+img_id+"&total="+total,1,"toolbar=no,location=no,directories=no,scrollbars=no,status=no,menubar=no,resizable=no,width=250,height=250,left="+xpos+",top="+ypos+"")
}
}



