var popupWindow;

function popUp(newpicname)
{

HTML = "<html><body bgcolor=#36455A text=#FFFFFF><table width=100% border=0 cellspacing=0 cellpadding=0 height=100%><tr align=center valign=middle><td><img src='"+ newpicname +"' height=225 width=300 border=1 alt='Bild' name=load_image></td></tr></table></body></html>";


if (!popupWindow || popupWindow.closed)
{
popupWindow = window.open('popup.htm','','width=400,height=300');
}
else 
{

}
popupWindow.focus();
popupWindow.document.open();
popupWindow.document.write(HTML);
popupWindow.document.close();
}


