// JavaScript Document von www.hirschhornknoepfe.de

var Bild = null;
function bildanzeigen(website,windowname,w1,h1) 
	{	w_add = 37;
		h_add = 38;
		w = parseInt(w1) + parseInt(w_add);
		h = parseInt(h1) + parseInt(h_add);
		LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
		/*TopPosition = (screen.height) ? (screen.height-h)/2 : 0;*/
		TopPosition = parseInt(20);
        var windowprops='toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width='+w+',height='+h+', top='+TopPosition+',left='+LeftPosition+''
  	
	Bild = window.open(website,windowname,windowprops);
	Bild.focus();
	}


