function verDetalle(a,marca,ofeid,ovig){
	var opciones="scrollbars=yes,toolbar=no,location=no,directories=no,status=no,resizable=no,width=820,height=450";
	var miPopup = window.open("/postulantes/imprimircv_2.php?id="+a+"&marcar="+marca+"&ofeid="+ofeid+"&ovig="+ovig,"",opciones);	
}
function Confirma(){
	if (confirm("żEsta seguro de querer eliminar los postulantes seleccionados?")){
		return true;
	}
	return false;
}
function resaltar_tr(id){
	if(document.getElementById(id).className=="visto"){
		document.getElementById(id).className='resaltado_visto';
	}else{
		document.getElementById(id).className='resaltado_novisto';
	}
}
function no_resaltar_tr(id){
	if(document.getElementById(id).className=="resaltado_visto"){
		document.getElementById(id).className='visto';
	}else{
		document.getElementById(id).className='no_visto';
	}
}
function marcar_visto(id){
	document.getElementById(id).className='resaltado_visto';
}
function resaltar_menu(id){
	document.getElementById(id).className='menu_resaltado';
}
function no_resaltar_menu(id){
	document.getElementById(id).className='menu_no_resaltado';
}