// Image Popupper
function img(nume,imagine,w,h) { 
  c = window.open('','a','width='+w+',height='+h); 
  with (c.document)
  { 
	writeln ('<html><head><title>',nume,'<\/title><\/head><body leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\"><a href="#" onClick="window.close()"><img border=\"0\" src=\"');
    writeln (imagine);
	writeln ('\"><\/a><\/body><\/html>');
  } 
}
