 function pops(url,finestra,nom){ 
				 if ((finestra == "tipoA") || (finestra == "tipoB") || (finestra == "tipoC") || (finestra == "tipoF")){ window.open(url) } if (finestra=="tipoD"){ window.open(url,"","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,height=470,width=770") } if (finestra =="tipoE"){    window.open(url,"Servicaixa","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,height=460,width=640") } if (finestra =="condi"){    
						 window.open(url,nom,"toolbar=yes,width=758,height=500,left=0,top=0,scrollbars=yes") 
				 } 
				 
				 
				 if (finestra =="tipoG"){    
					 remoto=window.open(url,"","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,height=460,width=460"); 
				 
					 if (remoto.opener == null) 
						    remoto.opener = window;   
				 
					remoto.opener.parent.name = "frameprin"; 
				}
				 
} 


var currTDcolor = null;

function mOvr(src,clrOver) {
 if (!src.contains(event.fromElement)) {
  src.style.cursor = 'hand';
  currTDcolor = src.bgColor
  src.bgColor = clrOver; 
 } 
} 

function mOut(src,clrIn) {
 if (!src.contains(event.toElement)) {
  src.style.cursor = 'default'; 
  src.bgColor = currTDcolor; 
 } 
} 

function mClk(src){ 
 if(event.srcElement.tagName=='TD')
  src.children.tags('A')[0].click();
}