function showimg (url,w,h,name) {
	var win=window.open("","maedchen","directories=no,height="+h+",location=no,menubar=no,resizable=no,srollbars=yes,status=no,toolbar=no,width="+w+"");
	win.document.writeln("<html><head><title>"+name+"</title></head><body bgcolor='#FFFFFF' text='#000000'leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>");
	win.document.writeln("<img src='"+url+"'>");
	win.document.writeln("</body></html>");
}

