
/*function new_window(src, name, attributes)
{
	var win;
	win = window.open(src, name, attributes);
	win.focus();
}*/

function img_popup(img)
{
    var win = window.open('', 'img_popup', 'width=800,height=600,top=0,left=0');
    win.document.write("<html><head><title>detailreiche Bildansicht</title></head><body><div>");
    win.document.write("<img src='" + img + "' width='800' height='600' class='boarder' /></div></body></html>");
    win.document.close();
    win.focus();
}

