function ShowEnlarged(cx,cy,wd,ht, src,title,alt,border,hspace,vspace)
{
	var ow,dx,dy;
	dx=wd+2*(border+hspace);
	dy=ht+2*(border+vspace);
	ow=window.open("about:blank","_blank","left="+cx+",top="+cy+",width="+dx+",height="+dy+",status=no,menubar=no,titlebar=no,scrollbars=no,resizable=no,location=no");
	ow.document.write("<TITLE>"+title+"</TITLE>");  
	ow.document.write("<BODY topmargin=0 bottommargin=0 leftmargin=0 rightmargin=0>");  
	ow.document.write("<IMG src='"+src+"' alt='"+alt+"' border="+border+" hspace="+hspace+" vspace="+vspace+">");  
	ow.document.write("</BODY>");  
}
	
function OpenPictures(width,height,img,a,bar)
{
	args = 'width='+width+',height='+height+',location=0,menubar=0,resizable=1,scrollbars='+bar+',status=0,titlebar=0,toolbar=0,hotkeys=0';
	popup_win = window.open('/picture/'+a+'/'+img+'/',a,args);
}