
// Para posicionarse por encima de frames
if (top.location != location) {
	top.location.href = document.location.href ;
}

// Limpia info cajas de texto
function doC(theText) {
	if (theText.value == theText.defaultValue) {
		theText.value = ""
	}
}
  
 // Despliega 
function tDiv(divid,divimg){
	if(document.getElementById(divid).style.display == 'none'){
		document.getElementById(divid).style.display = 'block';
		document.getElementById(divimg).src = 'img/flecha_b.gif';
	}else{
		document.getElementById(divid).style.display = 'none';
		document.getElementById(divimg).src = 'img/flecha_a.gif';
	}
}