// JavaScript Document
function onClick(objExcluir){
var agree=confirm(objExcluir);
if (agree)
	return true ;
else
	return false ;
}

function regConf(){
	d = document.form1;
	if (d.password.value == ""){
		alert("Please type your password!");
		d.password.focus();
		return false;
	}
}