
/* galerie */

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_visu.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_visu.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+"")
}
}



/* openpic */

function OpenNewWindow(Picture,Breit,Hoch)
{
xsize = Breit+30;
ysize = Hoch+50;
    
ScreenWidth = screen.width;
ScreenHeight = screen.height;

xpos = (ScreenWidth/3)-(xsize/3);
ypos = (ScreenHeight/3)-(ysize/3);
	
NewWindow=window.open("","Picture","height="+ysize+",width="+xsize+",scrollbars=no,resizable=no,top="+ypos+",left="+xpos+"");
NewWindow.document.write ("<html><head><title> Pizzeria Rebstock Andelfingen ");
NewWindow.document.write ("</title><link rel='stylesheet' type='text/css' href='rebstock.css'></head>");
NewWindow.document.write ("<body bgcolor='#FFFFFF' topmargin='0' leftmargin='0' marginheight='0' marginwidth='0' bodymargin='0'>");
NewWindow.document.write ("<table align='center'><tr>");
NewWindow.document.write ("<td colspan='2' align='center' valign='top'>");
NewWindow.document.write ("<table border='0' cellpadding='0' cellspacing='0'><tr><td align='center'>");
NewWindow.document.write ("&nbsp;<br><img src=");
NewWindow.document.write (Picture);
NewWindow.document.write (" class='borderb'>");
NewWindow.document.write ("</tr></td></table>");
NewWindow.document.write ("</td></tr><tr>");
NewWindow.document.write ("<td><a href='javascript:window.print()' class=''>drucken</a></td>");
NewWindow.document.write ("<td align='right'><a href='javascript:top.window.close()'>schliessen</a></td>");
NewWindow.document.write ("</tr></table>");
NewWindow.document.write ("</body></html>");
NewWindow.document.close();
}


