function showPhoto(id){

	w = 800;
	h = 600;

     	l = (screen.width - w) / 2;
	t = (screen.height - h) / 2;

       	win = "top="+t+", left="+l+", toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=0,resizable=0,width="+ w +",height="+ h; 
       	          	
	photo = window.open('' , 'nhlphotos', win);
		
	photo.document.write ('<html><head><title>nhl</title>');
	photo.document.write ('<link type="text/css" rel="stylesheet" href="/css/popup.css"></head>');
	photo.document.write ('<body>');
	photo.document.write ('<a href="javascript:window.close();"><img src="/images/ekipe/' + id +'.jpg"></a>');
	photo.document.write ('</body></html>');
	
	photo.focus();
}

