// VALIDAÇÃO DE FORMS
function isEmpty( str){
	regexp = '^[\s ]*$';
	if (str.value.search(regexp) == -1)	{ 
		return false;
	} else {
		return true;
	}
}

function notValidEmail( str ){
	regexp = '^[\._a-z0-9-]+@[\.a-z0-9-]+[\.]{1}[a-z]{2,4}$';
	if (str.value.search(regexp) == -1)	{ 
		return true;
	} else {
		return false;
	}	
}

function notChecked( box ){
    if( box.checked ){
        return false;
    }
    else{
        return true;
    }
}


function troca(id){
var img_id = 'img_' + (id); 

	if (document.getElementById)
	{
		if(document.getElementById(id).style.display == 'none')
		{
		   document.getElementById(id).style.display = 'block';
		   document.getElementById(img_id).src="/images/ico_menos.gif";

		} else 
		{
		   document.getElementById(id).style.display = 'none';
		   document.getElementById(img_id).src="/images/ico_mais.gif";

		}
		
		return false;
	}
}
				