function load_pic(path)
{
	path = "images/" + path;

	win = window.open("","Bild","width=660,height=520,resizable=yes");

	win.document.write('<link rel=stylesheet type="text/css" href="../setup_pic.css"> \n');

	win.document.write('<style type="text/css"> \n');
	win.document.write('body {scrollbar-face-color: #CC0000; scrollbar-shadow-color: black; scrollbar-highlight-color: white; scrollbar-3dlight-color: black; scrollbar-darkshadow-color: black; scrollbar-track-color: #EEEEEE; scrollbar-arrow-color: white;}\n');
	win.document.write('</style> \n');

    	win.document.write('<BODY bgcolor="#000000">');

	win.document.write("<div id='welcome' style='position:absolute; left:50px; top:7px; width:400px; height:60px; z-index:5' visibility='show'><font face='Verdana' color='#FF0000' size='1'>Foto © Freiwillige Feuerwehr Walld&uuml;rn</font></div> \n");
	win.document.write("<div id='welcome' style='position:absolute; left:450px; top:5px; width:200px; height:60px; z-index:5' visibility='show'><a href='javascript:window.close()'><img src='../images/zurueck.gif' border='0'>&nbsp;<font face='Verdana' color='#FF0000' size='2'>Fenster schlie&szlig;en</font></a></div> \n");

	win.document.write("<br><IMG SRC="+path+"> \n");
}


function load_pic_name(path,name)
{
	path = "images/" + path;
	
	win = window.open("","Bild","width=660,height=520,resizable=yes");

	win.document.write('<link rel=stylesheet type="text/css" href="../setup_pic.css"> \n');
	
	win.document.write('<style type="text/css"> \n');
	win.document.write('body {scrollbar-face-color: #CC0000; scrollbar-shadow-color: black; scrollbar-highlight-color: white; scrollbar-3dlight-color: black; scrollbar-darkshadow-color: black; scrollbar-track-color: #EEEEEE; scrollbar-arrow-color: white;}\n');
	win.document.write('</style> \n');

    	win.document.write('<BODY bgcolor="#000000">');

	win.document.write("<div id='welcome' style='position:absolute; left:50px; top:7px; width:400px; height:60px; z-index:5' visibility='show'><font face='Verdana' color='#FF0000' size='1'>Foto © "+ name +"</font></div> \n");
	win.document.write("<div id='welcome' style='position:absolute; left:450px; top:5px; width:200px; height:60px; z-index:5' visibility='show'><a href='javascript:window.close()'><img src='../images/zurueck.gif' border='0'>&nbsp;<font face='Verdana' color='#FF0000' size='2'>Fenster schlie&szlig;en</font></a></div> \n");

	win.document.write("<br><IMG SRC="+path+"> \n");
}


