function pictures(url, w, h)
{
win = window.open("","pop","height=" + h + ",width=" + w + ",left=" + ((screen.width - w)/2) + ",top=" + ((screen.height - h)/2 - 20) + "");
win.document.write("<HTML>");
win.document.write("<TITLE>Nagyban</TITLE>");
win.document.write("</HEAD>");
win.document.write("<BODY BGCOLOR='#CBCBCB' TEXT='#666666' LEFTMARGIN='0' TOPMARGIN='0' MARGINWIDTH='0' MARGINHEIGHT='0' SCROLL='NO'>");
win.document.write("<P ALIGN='CENTER'><img src='" + url + "' height='" + h + "' width='" + w + "' ONCLICK='self.close()'></P>");
win.document.write("</BODY></HTML>");
win.document.close();
}