function estatus(texto){
 	window.status = texto;
}
function mostrarDIV(obID, estat){
	if (estat == 0){
		document.getElementById(obID).style.display = 'none';
	} else {
		document.getElementById(obID).style.display = 'block';
	}
}
function finestraDownload(obId){ 
	var opcions = 'width=0, height=0';
	var finestra = window.open(obId,'',opcions);
	finestra.focus();
}
function popup(obId){ 
	var opcions = '';
	var finestra = window.open(obId,'',opcions);
	finestra.focus();
}
function modifGen(obId, img, estat){
	document.getElementById(obId).className = 'cursorHand';
	if ( estat == 0 ){
		document.getElementById(obId).src=img+'.gif';
	} else {
		document.getElementById(obId).src=img+'_on.gif';
	}
}
/* */
function rowOverEffect(object) {
  if (object.className == 'lleiPDF') object.className = 'lleiPDFOn';
}

function rowOutEffect(object) {
  if (object.className == 'lleiPDFOn') object.className = 'lleiPDF';
}
/* */