<!--
/* FUNCIONES PARA CAMBIAR DE COLOR LAS FILAS Y ENLAZAR AL HACER CLICK */

function overTR(tr,color){tr.bgColor=color;}
function outTR(tr,color){tr.style.cursor='default';tr.bgColor=color;} 


function clickTD(td){td.children.tags('A')[0].click();} 

function openPimg(num,nombre,modelo){
	
	var theHeight = 870;
	var theWidth = 890;
	
	var theTop=(screen.height/2)-(theHeight/2);
	var theLeft=(screen.width/2)-(theWidth/2);
	
	var direccion = "popimg.php?num="+num+"&nombre="+nombre+"&modelo="+modelo;
	var features = "width="+theWidth+",height="+theHeight+",resizable=no,scrollbars=yes,toolbar=no,location=no,directories=no,status=yes,menubar=no,copyhistory=no,left="+theLeft+",top="+theTop;
	window.open(direccion,'productoImagen',features);
}

//STOP HIDING -->
