function showWindow(title,picture,w,h)
{
		var popWindow;
		
        popWindow = window.open("", "popWindow", "toolbar=no,width=" + w + ",height=" + h + ",top=30,left=30,toolbar=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no");
		
        popWindow.document.open();

        popWindow.document.write("<html><title>" + title + "</title>");
        popWindow.document.write("<body style='background-color : white; font-family : verdana, arial ,helvetica; color : black; font-size :10pt;'><center>");
        popWindow.document.write("<img src='" + picture + "'>");
        popWindow.document.write("<br><br><a href='JavaScript:window.close()' style='color : blue ;font-size : 10pt;'>schliessen</a></font></center>");
        popWindow.document.write("</body></html>");

        popWindow.document.close();
		
		popWindow.focus;
}

