function leave() {window.open('http://www.ceara.com.br/cepg/obrig.htm','','toolbar=no,menubar=no,location=no,height=200,width=280')
  }

function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
} 
function checkrequired(which){
var pass=true
if (document.images){
for (i=0;i<which.length;i++){
var tempobj=which.elements[i]
if (tempobj.name.substring(0,8)=="required"){
if (((tempobj.type=="text"||tempobj.type=="textarea")&&tempobj.value=='')||(tempobj.type.toString().charAt(0)=="s"&&tempobj.selectedIndex==-1)){
pass=false
break
}
}
}
}
if (!pass){
alert("Não foi preenchido corretamente. Por favor complete os dados que faltam!")
return false
}
else
return true
}