function popImages(img,w,h)
{
popwin = window.open("","","scrollbar=no,width="+w+",height="+h);
popwin.document.open();
popwin.document.write("<html><head><TITLE>Αριάδνη Πουλιού</TITLE>");
popwin.document.write("</head>");
popwin.document.write("<body bgcolor='#1B1812'><table width='100%' height='100%'><tr><td style='text-align: center; vertical-align: middle;'>");
popwin.document.write("<img src='"+ img + "' style=' border: 1px solid black;'>");
popwin.document.write("</td></tr></table></body></html>");
popwin.document.close();
popwin.focus();
}


function pop (img)
{
popImages(img,600,430);
}
