	var newWin = null;

	function VerImagen(id){
		popUp("imagen.php?id="+id,'console',495,660);
	}
	function popUp(strURL, strType, strHeight, strWidth) {
	 if (newWin != null && !newWin.closed)
	   newWin.close();
	 var strOptions="";
	 if (strType=="console")
	   strOptions="height="+
	     strHeight+",width="+strWidth;
	 if (strType=="fixed")
	   strOptions="status,height="+
	     strHeight+",width="+strWidth;
	 if (strType=="elastic")
	   strOptions="toolbar,menubar,scrollbars,"+
	     "resizable,location,height="+
	     strHeight+",width="+strWidth;
	 newWin = window.open(strURL, 'newWin', strOptions);
	 newWin.focus();
	}

	function Consulta(id){
		popUp("consulta.php?id="+id,'console',250,420);
	}
	function popUp(strURL, strType, strHeight, strWidth) {
	 if (newWin != null && !newWin.closed)
	   newWin.close();
	 var strOptions="left=300,top=300";
	 if (strType=="console")
	   strOptions="left=300,top=300,height="+
	     strHeight+",width="+strWidth;
	 if (strType=="fixed")
	   strOptions="status,height="+
	     strHeight+",width="+strWidth;
	 if (strType=="elastic")
	   strOptions="toolbar,menubar,scrollbars,"+
	     "resizable,location,height="+
	     strHeight+",width="+strWidth;
	 newWin = window.open(strURL, 'newWin', strOptions);
	 newWin.focus();
	}

	function recargar(url){
		setTimeout('location.href="'+url+'"',2000);
	}