//////////////////////////////////////////////////
//	OPCIONES DE CREDITO DEL BUSCADOR
var tog_oc = false;
function optCred(el) {
	if ( !tog_oc ) {
		//console.log('entro');
		tog_oc = new Fx.Slide('opt-cred', {onComplete: function(){
			//console.log(this.open);
		}});
		tog_oc.wrapper.setStyle('float', 'left');
		tog_oc.wrapper.setStyle('position', 'relative');
		tog_oc.hide();
		//console.log(tog_oc.open);
		$('opt-cred').removeClass('opt-cred');
	}
	if ( el.value == 2 ){
		if(tog_oc.open==false){
			tog_oc.slideIn();
		}			
	}else{
		if(tog_oc.open){
			tog_oc.slideOut();
		}		
	}

}

//FUNCION VALIDA CONTACTO
function validaContacto(idFrm) {
	var frm = $(idFrm);

	if (validateForm(idFrm)) {

		if (!frm.email.value.isMail()) {
			frm.email.focus();
			tips.show(frm.email, 'EMAIL :: Ingrese una cuenta de E-mail válida');
			return false;
		}

		frm.submit();
	}
	return false;
}