function edit(anchor, width, height) 
{
     height += 10;
     w = window.open(anchor,'1','top=40,left=40,width='+width+',height='+height+',title=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1');
     w.focus();
}

function show_big_img(winnum,title,width,height,imgurl)
{
  im=window.open('','win'+winnum,'top=40,left=40,width='+width+',height='+height+',scrollbars=no,menu=no,status=yes,resizable=no');
  im.focus();
  im.document.open ("text/html");
  im.document.write ('<html><title>'+title+'</title><body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 bgcolor=#ffffff><img src='+imgurl+'></body></html>');
  im.document.close ();
}

function winop(id, width, height)
{
	height += 40;
	im = window.open('', 'big_foto' + id,'top=40,left=40,width='+width+',height='+height+', scrollbars=no, menu=no,status=yes,resizable=no');
	im.focus();
} 
