function popup(url,width,height) {
        var output="<html><head><title>Pension Anita<\/title>\n"+
		   "<style type=\"text/css\">\n<!--\n"+
		   "body { background-color: #000000; \n"+
                   "color: #FFFFFF; \n"+
                   "margin: 0pt; }\n"+
		   "-->\n</style>\n"+
                   "<body>\n"+ 
	           "<img src=\""+url+"\" " +
                   "height=\""+height+"\" width=\""+width+"\"><\/body><\/html>";
        newwindow=window.open("about:blank","","width="+width+
        	     ",height="+height+",resizable=no,menubar=no,scrollbars=no,copyhistory=yes");
        newwindow.document.writeln(output);
}
