//Abre Janela
function janela(URL,width,height,left,top,scrolbar,status,toolbar,location,directories,menubar,resizable,fullscreen)
{
   window.open(URL,'VISAO', 'width='+width+', height='+height+', top='+top+', left='+left+', scrollbars='+scrolbar+', status='+status+', toolbar='+toolbar+', location='+location+', directories='+directories+', menubar='+menubar+', resizable='+resizable+', fullscreen='+fullscreen+'');
}

function Limpa(S)
{
	var temp = "";
	var digito = "";
   	for (var i=0; i<S.length; i++)
	{
   		digito = S.charAt(i);
   		if (digito==","){temp=temp+"."}
	   		else if (digito!=" "){temp=temp+digito}
    }
   	return temp
}
	
function checkmail(e_mail) 
{
   	var find_ponto=false;
  	var find_arroba=false;
   	var find_caracter=false;
   	if ((e_mail.charAt(0)==".")||(e_mail.charAt(e_mail.length-1)=="."))
    	return (false & false & false);
 	if ((e_mail.charAt(0)=="@")||(e_mail.charAt(e_mail.length-1)=="@"))
 		return (false & false & false);
 	for (var i=0; i<e_mail.length; i++) 
	{
		if ((e_mail.charAt(i)==":")||(e_mail.charAt(i)=="/")||(e_mail.charAt(i)==";"))
            return (false & false & false);
       	else
       	{
			if (e_mail.charAt(i)=="@")
			{
		   		if (find_arroba==true)
		       		return (false & false & false);
		   		else 
				{ 
                   	find_arroba=true;
		       		if ((e_mail.charAt(i-1)==".")||(e_mail.charAt(i+1)=="."))
                 		return (false & false & false);
		  		}
       		}
          	else if (e_mail.charAt(i)==".") find_ponto=true;
            else if (e_mail.charAt(i)!=" ") find_caracter=true;
        }    
	}
    return (find_ponto & find_arroba & find_caracter);
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

