var actiu=0;
function win_popup(theURL,w,h,winName,desfoto) 
{ 


h=parseInt(h)+80;
w=parseInt(w)+25;
top.consoleRef=window.open('','winName',
   'top=50,left=250,width='+w+',height='+h
   +',menubar=0'
   +',toolbar=0'
   +',status=0'
   +',scrollbars=1'
   +',resizable=1')
 top.consoleRef.document.writeln(
  '<html><head><title>Imatge</title></head>'
   +'<body style="font-family:verdana;font-size:10px" bgcolor=white onLoad="self.focus()"><div align=center style="font-family:verdana;font-size:10px"><img src='
   +theURL
   +' border=0><br>'
   +desfoto
   +'</div></body></html>'
 )
 top.consoleRef.document.close()
}

function pujaScroll(scroll){
	document.getElementById(scroll).scrollTop=document.getElementById(scroll).scrollTop-10;
	if(actiu)
		setTimeout("pujaScroll('"+scroll+"')",50);
}

function baixaScroll(scroll){
	document.getElementById(scroll).scrollTop=document.getElementById(scroll).scrollTop+10;	
	if(actiu)
		setTimeout("baixaScroll('"+scroll+"')",50);
}