function abrepopup(){
window.open("popup.htm","Pop1","width=320,height=200,status=0,left=720,top=100,resizable=0,scrollbars=yes");
window.open("popup2.html","Pop2","width=674,height=402,status=0,left=10,top=100,resizable=0,scrollbars=no");
//window.open("popup3.html","Pop3","width=353,height=353,status=0,left=420,top=100,resizable=0,scrollbars=no");
//window.open("pop_updavid.htm","Pop4","width=353,height=353,status=0,left=420,top=100,resizable=0,scrollbars=no");
};

function abrepopup1(){
window.open("popup.aspx","Pop4","width=400,height=431,status=0,left=420,top=100,resizable=0,scrollbars=no");
}

function abreJanela(arquivo,nome,barra,largura,altura) {
	window.open(arquivo,nome,"resizable=no,toolbar=no,status=no,menubar=no,scrollbars="+barra+",width="+largura+",height="+altura);
}

function CampoObrigatorio(objParam) {
     if (objParam.value=='') {
	    return false;
	 }else {
	    return true;
	 }
}

function Email(objEmail){
    if (!objEmail.value.match(/^([a-zA-Z0-9][a-zA-Z0-9_.-]{2,}@([a-zA-Z0-9-]+\.)+[a-zA-Z]{2,4})$/)) {
	 	return false;
	}else{
		return true;	
	}
}