<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

<head>
<meta http-equiv="Content-Type" content=""/>
<meta http-equiv="Content-Language" content="" />
<META NAME="author" CONTENT="">
<meta name="reply-to" content="">
<meta name="generator" content="">
<META NAME="description" CONTENT="">
<META NAME="keywords" CONTENT="">
<meta name="robots" content="">
<meta name="title" content=""/>
<meta content="document" name="resource-type"/>
<meta content="Internet" name="classification"/>
<meta content="Global" name="distribution"/>
<meta content="General" name="rating"/>
<meta content="Completed" name="doc-class"/>
<meta content="Public" name="doc-rights"/>
<script src="common/js/mootools-1.2-core.js" type="text/javascript"></script>
<script src="common/js/_class.viewer.packed.js" type="text/javascript"></script>


<title></title>
<link href="common/css/main.css" rel="stylesheet" type="text/css" />
<link href="common/css/viewer.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="base">
<div id="topMenu">
	<span id="topNavMenu">
	<a class="item" href="index.asp">Home</a>|
	<a class="item" href="empresa.asp">Empresa</a>|
	<a class="item" href="servicos.asp">Servi&ccedil;os</a>|
	<a class="item" href="planos.asp">Planos e Tarifas</a>|
	<a class="item" href="diversos.asp">Diversos</a>|
	<a class="item" href="suporte.asp">Suporte</a>|
	<a class="item" href="contato.asp">Contato</a>
	</span>
	<!--<span id="busca">
	<form action="javascript:alert('Em desenvolvimento')">
	<b>Busca</b>:<input type="text" name="busca" class="busca">
	<input type="submit" name="buscar" value="" style="background:url(common/img/lupa.gif) no-repeat;height:22px;width:22px"/>
	</form>
	</span>-->

</div><!--topmenu-->
<script type="text/javascript">document.write("<center><object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http:\/\/download.macromedia.com\/pub\/shockwave\/cabs\/flash\/swflash.cab#version=7,0,19,0\" width=\"766\" height=\"220\"><param name=\"movie\" value=\"common\/swf\/header.swf\" \/><param name=\"quality\" value=\"high\" \/><param name=\"wmode\" value=\"transparent\" \/><param name=\"menu\" value=\"false\" \/><embed src=\"common\/swf\/header.swf\" width=\"766\" height=\"220\" quality=\"high\" pluginspage=\"http:\/\/www.macromedia.com\/go\/getflashplayer\" type=\"application\/x-shockwave-flash\" wmode=\"transparent\" menu=\"false\"><\/embed><\/object></center>")</script><script>
	// Identificação de browser
	var isNav4, isNav, isIE;
	if (parseInt(navigator.appVersion.charAt(0)) >= 4) 
	{
	  isNav = (navigator.appName=="Netscape") ? true : false;
	  isIE = (navigator.appName.indexOf("Microsoft") != -1) ? true : false;
	}
	if (navigator.appName=="Netscape") 
	{
		isNav4 = (parseInt(navigator.appVersion.charAt(0))==4);
	}

	function VisualizaProposta(cod) {
		location.href='propostasVis.asp?cod='+cod;
	}
	function VisualizaImovel(cod) {
		location.href='imovelVis.asp?cod='+cod;
	}	
	// Bloquear caracteres nao numericos - onKeyPress=onlynum()
	function onlynum(e) 
	{
		var keyNumber = (isIE) ? event.keyCode : e.which;
		if (((keyNumber<48)||(keyNumber>57)) && (keyNumber!=13) && (keyNumber!="0") && (keyNumber!=8)) {
			if (isIE) event.keyCode=0;
			return false;
		}
	}
		
	function Limpar(valor, validos) { 
		// retira caracteres invalidos da string 
		var result = ""; 
		var aux; 
		for (var i=0; i < valor.length; i++) { 
		aux = validos.indexOf(valor.substring(i, i+1)); 
		if (aux>=0) { 
		result += aux; 
		} 
		} 
		return result; 
	} 
	
	//Formata número tipo moeda usando o evento onKeyDown 
	
	function Formata(campo,tammax,teclapres,decimal) { 
		var tecla = teclapres.keyCode; 
		vr = Limpar(campo.value,"0123456789"); 
		tam = vr.length; 
		dec=decimal 
		
		if (tam < tammax && tecla != 8){ tam = vr.length + 1 ; } 
		
		if (tecla == 8 ) 
		{ tam = tam - 1 ; } 
		
		if ( tecla == 8 || tecla >= 48 && tecla <= 57 || tecla >= 96 && tecla <= 105 ) 
		{ 
		
		if ( tam <= dec ) 
		{ campo.value = vr ; } 
		
		if ( (tam > dec) && (tam <= 5) ){ 
		campo.value = vr.substr( 0, tam - 2 ) + "," + vr.substr( tam - dec, tam ) ; } 
		if ( (tam >= 6) && (tam <= 8) ){ 
		campo.value = vr.substr( 0, tam - 5 ) + "." + vr.substr( tam - 5, 3 ) + "," + vr.substr( tam - dec, tam ) ; 
		} 
		if ( (tam >= 9) && (tam <= 11) ){ 
		campo.value = vr.substr( 0, tam - 8 ) + "." + vr.substr( tam - 8, 3 ) + "." + vr.substr( tam - 5, 3 ) + "," + vr.substr( tam - dec, tam ) ; } 
		if ( (tam >= 12) && (tam <= 14) ){ 
		campo.value = vr.substr( 0, tam - 11 ) + "." + vr.substr( tam - 11, 3 ) + "." + vr.substr( tam - 8, 3 ) + "." + vr.substr( tam - 5, 3 ) + "," + vr.substr( tam - dec, tam ) ; } 
		if ( (tam >= 15) && (tam <= 17) ){ 
		campo.value = vr.substr( 0, tam - 14 ) + "." + vr.substr( tam - 14, 3 ) + "." + vr.substr( tam - 11, 3 ) + "." + vr.substr( tam - 8, 3 ) + "." + vr.substr( tam - 5, 3 ) + "," + vr.substr( tam - 2, tam ) ;} 
		} 

} 


	var sc = 1;
	var st = 0;
	var w = 0;
	var h = 0;
	function deadCenter(w,h,url) {
			if (window.screen) {
			var chasm = screen.availWidth;
			var mount = screen.availHeight;
			  putItThere = window.open(url,'compass','width=' + w + ',height=' + h + ',scrollbars=' + sc + ',status=' + st + ',left=' + ((chasm - w - 10) * .5) + ',top=' + ((mount - h - 30) * .5));
			  
			}
	}
	function foto(urlFoto) {
		parent.document.fotoGrande.src='images/'+urlFoto;
	}

</script>


	<script>
	function envia() {
		var texto = document.dados.emlcontato.value;
		if (texto.length==0) {
			alert('Você deve preencher o seu e-mail');
			document.dados.emlcontato.focus();
			return;
		}
		document.dados.submit();
		}
	</script>
	<tr>
		<td width="766" height="468">
			<table>
				<tr>
					<td width="46" height="468"></td>
					<td width="658" height="468">
						<table>
							<tr>
								<td width="658" height="21"></td>
							</tr>
							<tr>
								<td width="658" height="427">
									<br style="line-height:10px">
									<span class="titulo">
									<img src="images/7_w1.gif" alt="" border="0"><B>Esquecimento da senha</b></span><BR><BR>
                                    
                                   
<BR><center><font color="red"></font></center><BR>
<P><form action="esqueci.asp" method="post" name="dados">
	<input type="hidden" name="action" value="Enviar">
		<table cellspacing=4><TR><TD class="labelText">Digite o seu e-mail cadastrado: </td></tR>
		<TR><TD><input type="text" name="emlcontato" size="50" maxlength="100" class="campoText"></TD></TR>
				<TR><TD><input type="button" onclick="envia()" name="action" value="Enviar"></TD></tr>
				</table>
</form></p>


								</td>
							</tr>
							<tr>
								<td width="658" height="20"></td>
							</tr>
						</table>
					</td>
					<td width="62" height="468"></td>
				</tr>
			</table>
		</td>
	</tr>
	<div id="footer"><br/>
<span id="bottomNavMenu" >
	<a class="item" href="index.asp">Home</a>|
	<a class="item" href="empresa.asp">Empresa</a>|
	<a class="item" href="servicos.asp">Servi&ccedil;os</a>|
	<a class="item" href="planos.asp">Planos e Tarifas</a>|
	<a class="item" href="diversos.asp">Diversos</a>|
	<a class="item" href="suporte.asp">Suporte</a>|
	<a class="item" href="contato.asp">Contato</a>
</span>
<p id="copyright">callcentervoip.com.br Â© 2007 - 2009&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="http://www.eurosite.com.br/" align="right" style="color:lightblue">powered by: eurosite</a></p>

</div>
</div><!--base-->
</body>
</html>