<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<!--#include file="Connections/connmvz2.asp" -->
<%
Dim rsnews
Dim rsnews_numRows

Set rsnews = Server.CreateObject("ADODB.Recordset")
rsnews.ActiveConnection = MM_connmvz2_STRING
rsnews.Source = "SELECT * FROM news ORDER BY id DESC"
rsnews.CursorType = 0
rsnews.CursorLocation = 2
rsnews.LockType = 1
rsnews.Open()

rsnews_numRows = 0
%>
<%
Dim rssecao
Dim rssecao_numRows

Set rssecao = Server.CreateObject("ADODB.Recordset")
rssecao.ActiveConnection = MM_connmvz2_STRING
rssecao.Source = "SELECT * FROM cadastro"
rssecao.CursorType = 0
rssecao.CursorLocation = 2
rssecao.LockType = 1
rssecao.Open()

rssecao_numRows = 0
%>
<%
Dim Repeat1__numRows
Dim Repeat1__index

Repeat1__numRows = 6
Repeat1__index = 0
rsnews_numRows = rsnews_numRows + Repeat1__numRows
%>
<%
Dim MM_paramName 
%>
<%
' *** Validate request to log in to this site.
MM_LoginAction = Request.ServerVariables("URL")
If Request.QueryString<>"" Then MM_LoginAction = MM_LoginAction + "?" + Request.QueryString
MM_valUsername=CStr(Request.Form("txtlogin"))
If MM_valUsername <> "" Then
  MM_fldUserAuthorization="nivel"
  MM_redirectLoginSuccess="default.asp"
  MM_redirectLoginFailed="login_erro.asp"
  MM_flag="ADODB.Recordset"
  set MM_rsUser = Server.CreateObject(MM_flag)
  MM_rsUser.ActiveConnection = MM_connmvz2_STRING
  MM_rsUser.Source = "SELECT login, senha"
  If MM_fldUserAuthorization <> "" Then MM_rsUser.Source = MM_rsUser.Source & "," & MM_fldUserAuthorization
  MM_rsUser.Source = MM_rsUser.Source & " FROM cadastro WHERE login='" & Replace(MM_valUsername,"'","''") &"' AND senha='" & Replace(Request.Form("txtsenha"),"'","''") & "'"
  MM_rsUser.CursorType = 0
  MM_rsUser.CursorLocation = 2
  MM_rsUser.LockType = 3
  MM_rsUser.Open
  If Not MM_rsUser.EOF Or Not MM_rsUser.BOF Then 
    ' username and password match - this is a valid user
    Session("MM_Username") = MM_valUsername
    If (MM_fldUserAuthorization <> "") Then
      Session("MM_UserAuthorization") = CStr(MM_rsUser.Fields.Item(MM_fldUserAuthorization).Value)
    Else
      Session("MM_UserAuthorization") = ""
    End If
    if CStr(Request.QueryString("accessdenied")) <> "" And true Then
      MM_redirectLoginSuccess = Request.QueryString("accessdenied")
    End If
    MM_rsUser.Close
    Response.Redirect(MM_redirectLoginSuccess)
  End If
  MM_rsUser.Close
  Response.Redirect(MM_redirectLoginFailed)
End If
%>
<%
' *** Go To Record and Move To Record: create strings for maintaining URL and Form parameters

Dim MM_keepNone
Dim MM_keepURL
Dim MM_keepForm
Dim MM_keepBoth

Dim MM_removeList
Dim MM_item
Dim MM_nextItem

' create the list of parameters which should not be maintained
MM_removeList = "&index="
If (MM_paramName <> "") Then
  MM_removeList = MM_removeList & "&" & MM_paramName & "="
End If

MM_keepURL=""
MM_keepForm=""
MM_keepBoth=""
MM_keepNone=""

' add the URL parameters to the MM_keepURL string
For Each MM_item In Request.QueryString
  MM_nextItem = "&" & MM_item & "="
  If (InStr(1,MM_removeList,MM_nextItem,1) = 0) Then
    MM_keepURL = MM_keepURL & MM_nextItem & Server.URLencode(Request.QueryString(MM_item))
  End If
Next

' add the Form variables to the MM_keepForm string
For Each MM_item In Request.Form
  MM_nextItem = "&" & MM_item & "="
  If (InStr(1,MM_removeList,MM_nextItem,1) = 0) Then
    MM_keepForm = MM_keepForm & MM_nextItem & Server.URLencode(Request.Form(MM_item))
  End If
Next

' create the Form + URL string and remove the intial '&' from each of the strings
MM_keepBoth = MM_keepURL & MM_keepForm
If (MM_keepBoth <> "") Then 
  MM_keepBoth = Right(MM_keepBoth, Len(MM_keepBoth) - 1)
End If
If (MM_keepURL <> "")  Then
  MM_keepURL  = Right(MM_keepURL, Len(MM_keepURL) - 1)
End If
If (MM_keepForm <> "") Then
  MM_keepForm = Right(MM_keepForm, Len(MM_keepForm) - 1)
End If

' a utility function used for adding additional parameters to these strings
Function MM_joinChar(firstItem)
  If (firstItem <> "") Then
    MM_joinChar = "&"
  Else
    MM_joinChar = ""
  End If
End Function
%>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>MVZ Web Hosting, Hospedagem e desenvolvimento de site em Balsas Maranhão</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link href="stiles.css" rel="stylesheet" type="text/css" />
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
//-->
</script>
</head>

<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onload="MM_preloadImages('imagens2/icones/voltar_hover.gif')">
<table width="100%" border="0" cellpadding="0" cellspacing="0" id="mae">
  <tr> 
    <td height="572" valign="top">
<div align="center">
        <table width="778" border="0" cellspacing="0" cellpadding="0">
          <tr>
            <td height="574">
<table width="100%" border="0" cellpadding="0" cellspacing="0" id="mae" dwcopytype="CopyTableRow">
                
                <tr> 
                  <td valign="top"> <div align="center"> 
                      <table width="100%" border="0" cellspacing="0" cellpadding="0">
                        <tr> 
                          <td valign="top"><img src="images/top.gif" width="778" height="22" border="0" usemap="#Map" /></td>
                        </tr>
                        <tr> 
                          <td valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0">
                              <tr> 
                                <td width="49%"><img src="images/hand.jpg" width="452" height="155" /></td>
                                <td width="51%"><SCRIPT LANGUAGE="JavaScript" SRC="http://www.mvzweb.com/__wm__banner/0.js"> 
</SCRIPT> </td>
                              </tr>
                            </table></td>
                        </tr>
                        <tr> 
                          <td valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0">
                              <tr align="left" valign="top"> 
                                <td width="29%"><div align="left"><img src="images/modelo_04.gif" width="230" height="33" /><img src="images/espacador.jpg" width="9" height="33" /></div></td>
                                <td width="11%"> <div align="left"> 
                                    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="90" height="33">
                                      <param name="movie" value="imagens2/botao_Home.swf" />
                                      <param name="quality" value="high" />
                                      <embed src="imagens2/botao_Home.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="90" height="33"></embed></object>
                                  </div></td>
                                <td width="11%"> <div align="left"> 
                                    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="90" height="33">
                                      <param name="movie" value="imagens2/botao_painel.swf" />
                                      <param name="quality" value="high" />
                                      <embed src="imagens2/botao_painel.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="90" height="33"></embed></object>
                                  </div></td>
                                <td width="11%"> <div align="left"> 
                                    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="90" height="33">
                                      <param name="movie" value="imagens2/botao_Planos.swf" />
                                      <param name="quality" value="high" />
                                      <embed src="imagens2/botao_Planos.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="90" height="33"></embed></object>
                                  </div></td>
                                <td width="11%"><div align="left"> 
                                    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="90" height="33">
                                      <param name="movie" value="imagens2/botao_Servicos.swf" />
                                      <param name="quality" value="high" />
                                      <embed src="imagens2/botao_Servicos.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="90" height="33"></embed></object>
                                  </div></td>
                                <td width="6%"> <div align="left"> 
                                    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="90" height="33">
                                      <param name="movie" value="imagens2/botao_suporte.swf" />
                                      <param name="quality" value="high" />
                                      <embed src="imagens2/botao_suporte.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="90" height="33"></embed></object>
                                  </div></td>
                                <td width="21%"> <div align="left"> 
                                    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="90" height="33">
                                      <param name="movie" value="imagens2/botao_Contato.swf" />
                                      <param name="quality" value="high" />
                                      <embed src="imagens2/botao_Contato.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="90" height="33"></embed></object>
                                  </div></td>
                              </tr>
                            </table></td>
                        </tr>
                      </table>
                      <table width="100%" border="0" cellspacing="0" cellpadding="0">
                        <tr> 
                          <td valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0">
                              <tr valign="top"> 
                                <td width="212" bgcolor="#F3F3F3"> 
                                  <table width="100%" border="0" cellpadding="0" cellspacing="0">
                                    <tr> 
                                      <td valign="top"><img src="images/logo.jpg" width="212" height="55" /></td>
                                    </tr>
                                    <tr> 
                                      <td valign="top"><img src="images/noticias.gif" width="212" height="32" /></td>
                                    </tr>
                                    <tr> 
                                      <td valign="top"><table width="100%" border="0" cellspacing="3" cellpadding="0">
                                          <% 
While ((Repeat1__numRows <> 0) AND (NOT rsnews.EOF)) 
%>
                                          <tr> 
                                            <td><img src="imagens2/marcador2.gif" width="14" height="12" /> 
                                              <a href="noticias.asp?<%= MM_keepNone & MM_joinChar(MM_keepNone) & "id=" & rsnews.Fields.Item("id").Value %>" class="link1p"><%=(rsnews.Fields.Item("titulo").Value)%></a></td>
                                          </tr>
                                          <% 
  Repeat1__index=Repeat1__index+1
  Repeat1__numRows=Repeat1__numRows-1
  rsnews.MoveNext()
Wend
%>
                                        </table></td>
                                    </tr>
                                    <tr> 
                                      <td valign="top"><hr /></td>
                                    </tr>
                                    <tr> 
                                      <td valign="top"><img src="images/titulo_menu_faq.gif" width="212" height="32" /></td>
                                    </tr>
                                    <tr> 
                                      <td valign="top"><table width="100%" border="0" cellspacing="3" cellpadding="0">
                                          <tr> 
                                            <td><img src="imagens2/marcador4.gif" width="5" height="5" /> 
                                              <a href="faq_hospedagem.asp" class="link1p">Hospedagem</a></td>
                                          </tr>
                                          <tr> 
                                            <td><img src="imagens2/marcador4.gif" width="5" height="5" /> 
                                              <a href="faq_desenvolvimento.asp" class="link1p">Desenvolvimento</a></td>
                                          </tr>
                                          <tr> 
                                            <td><img src="imagens2/marcador4.gif" width="5" height="5" /> 
                                              <a href="faq_registros.asp" class="link1p">Registro 
                                              de dom&iacute;nios</a></td>
                                          </tr>
                                        </table></td>
                                    </tr>
                                    <tr> 
                                      <td valign="top"><img src="images/titulo_menu_secoes.gif" width="212" height="32" /></td>
                                    </tr>
                                    <tr> 
                                      <td valign="top"><table width="100%" border="0" cellspacing="3" cellpadding="0">
                                          <tr> 
                                            <td><img src="imagens2/marcador4.gif" width="5" height="5" /> 
                                              <a href="inscricao.asp" class="link1p">Inscri&ccedil;&atilde;o</a></td>
                                          </tr>
                                          <tr> 
                                            <td><img src="imagens2/marcador4.gif" width="5" height="5" /> 
                                              <a href="livro.asp" class="link1p">livro 
                                              de visitas</a> <img src="imagens2/fogo.gif" width="15" height="15" alt="" /></td>
                                          </tr>
                                          <tr>
                                            <td><img src="imagens2/marcador4.gif" width="5" height="5" /> 
                                              <a href="forum/default.asp" target="_blank" class="link1p">F&oacute;rum 
                                              </a></td>
                                          </tr>
                                          <tr> 
                                            <td><img src="imagens2/marcador4.gif" width="5" height="5" /> 
                                              <a href="chat_asp/chat.html" target="_blank" class="link1p">Chat</a></td>
                                          </tr>
                                          <tr> 
                                            <td><img src="imagens2/marcador4.gif" width="5" height="5" /> 
                                              <a href="cronica.asp" class="link1p">Cr&ocirc;nica</a></td>
                                          </tr>
                                          <tr> 
                                            <td height="14"><img src="imagens2/marcador4.gif" width="5" height="5" /> 
                                              <a href="imagens.asp" class="link1p">Imagens</a></td>
                                          </tr>
                                          <tr> 
                                            <td height="14"><img src="imagens2/marcador4.gif" width="5" height="5" /> 
                                              <a href="telebusca.asp" class="link1p">Tele 
                                              Busca</a></td>
                                          </tr>
                                        </table></td>
                                    </tr>
                                    <tr>
                                      <td valign="top">&nbsp;</td>
                                    </tr>
                                  </table></td>
                                <td width="462"> <table width="100%" border="0" cellspacing="0" cellpadding="0">
                                    <tr>
                                      <td background="images/titulos.gif" class="textopbranco"><div align="center"><br />
                                          Bem-vindo, hoje &eacute; 
                                          <% = date %> e agora s&atilde;o <% = time %>
                                          horas </div></td>
                                    </tr>
                                  </table>
                                  <% If (Session("MM_UserAuthorization")) = "user"  Then %>
                                  <span class="text3palert">Você est&aacute; logado 
                                  no sistema como </span><span class="texto1m"><%= Session("MM_username") %></span> 
                                  <% end if %>
                                  <% If (Session("MM_Username")) = ""  Then %>
                                  &nbsp;<span class="texto2p">Voc&ecirc; n&atilde;o 
                                  est&aacute; logado no sistema!</span> 
                                  <% end if %>
                                  <% If (Session("MM_UserAuthorization")) = "admin"  Then %>
                                  <span class="text3palert">Você est&aacute; logado 
                                  no sistema como </span><span class="texto1m"><%= Session("MM_username") %></span> 
                                  <% end if %>
                                  <br />
                                  <table width="100%" border="0" cellpadding="0" cellspacing="4" class="tabela1">
                                    <tr> 
                                      <td> <table width="100%" border="0" cellspacing="3" cellpadding="0">
                                          <tr> 
                                            <td width="60%" valign="top"> <div align="justify" class="texto1p"><img src="images/titulo_divulgue.gif" width="280" height="25" /></div></td>
                                          </tr>
                                          <tr> 
                                            <td valign="top"><table width="100%" height="481" border="0" cellspacing="10">
                                                <tr> 
                                                  <td width="50%" height="461" align="center" valign="top" class="texto1p"> 
                                                    <p align="justify" class="titulo1">Oque 
                                                      &eacute;....</p>
                                                    <p align="justify"> 
                                                     Servi&ccedil;o 
                                                      de cadastramento (submiss&atilde;o) 
                                                      de sites em ferramentas 
                                                      de busca.</p>
                                                    <p align="justify">Submetemos 
                                                      seus dados (t&iacute;tulo, 
                                                      descri&ccedil;&atilde;o, 
                                                      palavras-chave, respons&aacute;vel, 
                                                      email, etc) para ferramentas 
                                                      nacionais e internacionais, 
                                                      fazendo que seu site esteja 
                                                      presente em todos sistemas 
                                                      do Brasil e do mundo. </font></p>
                                                    <p align="justify"><img src="imagens2/novas_imagens/altavista.gif" width="95" height="43" /></font></p>
                                                    <p align="justify">Realizamos 
                                                      cadastros manuais nos sistemas 
                                                      nacionais (at&eacute; 250 
                                                      sistemas) obtendo assim 
                                                      a certeza que o pedido foi 
                                                      feito com sucesso, e semi-autom&aacute;ticos 
                                                      em sistemas internacionais 
                                                      (mais de 3000 sistemas). 
                                                     </p>
                                                    <p align="justify">Este 
                                                      servi&ccedil;o &eacute; 
                                                      recomendado para sites que 
                                                      possuem m&eacute;dia ou 
                                                      baixa concorr&ecirc;ncia 
                                                      na Internet. </font></p>
                                                    <p align="justify"><img src="imagens2/novas_imagens/yahoo.gif" width="133" height="43" /><br />
                                                      <br />
                                                      Lembramos que o posicionamento 
                                                      do site nos sistemas de 
                                                      busca ap&oacute;s o cadastro, 
                                                      &eacute; relativo &agrave; 
                                                      sua concorr&ecirc;ncia na 
                                                      internet, inclui-se o tempo 
                                                      para aparecimento nas pesquisas...(o 
                                                      Google geralmente demora 
                                                      mais que os outros sistemas) 
                                                     </p></td>
                                                  <td width="50%" height="461" align="center" valign="top" class="texto1p"> 
                                                    <p align="justify">&nbsp; 
                                                      Para voc&ecirc; entender 
                                                      melhor como funciona, basta 
                                                      verificar diretamente nos 
                                                      sistemas de busca; entre 
                                                      no site de busca na internet 
                                                      <a href="http://br.altavista.com/" target="_blank">ALTA 
                                                      VISTA</a> e digite &quot;fazendas 
                                                      maranh&atilde;o&quot;, voc&ecirc; 
                                                      ver&aacute; em primeiro 
                                                      lugar o site da Imobili&aacute;ria 
                                                      Terra Sul, voc&ecirc; tamb&eacute;m 
                                                      pode entrar no site de busca 
                                                      do <a href="http://www.yahoo.com.br" target="_blank">YAHOO</a> 
                                                      e fazer o mesmo teste, bem 
                                                      como no site de maior audi&ecirc;ncia 
                                                      da internet mundial o <a href="http://www.google.com.br" target="_blank">GOOGLE</a>, 
                                                      em ambos ver&aacute; a imobili&aacute;ria 
                                                      Terra Sul nas primeiras 
                                                      posi&ccedil;&otilde;es da 
                                                      sua busca. Tente mudar a 
                                                      sua busca para &quot;fazendas 
                                                      em Balsas&quot; por exemplo 
                                                      e ver&aacute; que o resultado 
                                                      ficar&aacute; ainda melhor. 
                                                      Este &eacute; um bom exemplo 
                                                      de cadastro bem sucedido 
                                                      nos sistemas de busca.</font></p>
                                                    <p align="justify"><img src="imagens2/novas_imagens/google.gif" width="104" height="43" /></p>
                                                    <p align="justify">&Eacute; 
                                                      importante lembrar que estes 
                                                      sistemas citados aqui neste 
                                                      exemplo s&atilde;o apenas 
                                                      alguns dos mais usados em 
                                                      todo o mundo al&eacute;m 
                                                      do <a href="http://www.cade.com.br" target="_blank">CADE</a>. 
                                                      <a href="http://miner.bol.com.br/index.html">MINER</a> 
                                                      e etc...</font></p>
                                                    <p align="justify"><img src="imagens2/novas_imagens/cade.gif" width="108" height="40" /></font></p>
                                                    <div align="justify"> 
                                                      <table width="100%" border="0">
                                                        <tr> 
                                                          <td bgcolor="#FFFFE6" class="texto2m">
<div align="justify">Por 
                                                              apenas R$ 250,00 
                                                              voc&ecirc; poder&aacute; 
                                                              dispor deste servi&ccedil;o 
                                                              completo de cadastramento.<br />
                                                              <a href="contato.asp" class="link2">Entre 
                                                              em contato para 
                                                              maiores detalhes.</a></div></td>
                                                        </tr>
                                                      </table>
                                                      <br />
                                                      <a href="#" onclick="javascript:history.go(-1)" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Image22','','imagens2/icones/voltar_hover.gif',1)"><img src="imagens2/icones/voltar.gif" alt="Voltar para página anterior" name="Image22" width="24" height="24" border="0" id="Image22" /></a> 
                                                    </div></td>
                                                </tr>
                                              </table></td>
                                          </tr>
                                        </table>
                                        <p>&nbsp;</p>
                                        <p align="justify">&nbsp;</p></td>
                                    </tr>
                                  </table></td>
                                <td width="106" bgcolor="#F3F3F3"> <table width="100%" border="0" cellspacing="0" cellpadding="0">
                                    <tr> 
                                      <td valign="top"><form name="formlogon" id="formlogon" method="POST" action="<%=MM_LoginAction%>">
                                          <table width="100%" border="0" cellspacing="0" cellpadding="0">
                                            <tr> 
                                              <td colspan="2" class="texto1p"><div align="center">Login: 
                                                </div></td>
                                            </tr>
                                            <tr> 
                                              <td colspan="2" class="texto1p"><div align="center"> 
                                                  <input name="txtlogin" type="text" class="form1p" id="txtlogin" size="13" />
                                                </div></td>
                                            </tr>
                                            <tr> 
                                              <td colspan="2"><div align="center" class="texto1p">Senha: 
                                                </div></td>
                                            </tr>
                                            <tr> 
                                              <td colspan="2"><div align="center"> 
                                                  <input name="txtsenha" type="password" class="form1p" id="txtsenha" size="13" />
                                                </div></td>
                                            </tr>
                                            <tr> 
                                              <td>&nbsp;</td>
                                              <td><div align="center"> 
                                                  <input name="imageField" type="image" src="images/bot_form1.gif" width="27" height="18" border="0" />
                                                </div></td>
                                            </tr>
                                          </table>
                                        </form></td>
                                    </tr>
                                    <tr> 
                                      <td valign="top"><div align="center"><a href="admin/administracao.asp" class="link2palert">
                                          <% If (Session("MM_UserAuthorization")) = "admin"  Then %>
                                          Administra&ccedil;&atilde;o</a></div><% end if %>
                                        <hr /></td>
                                    </tr>
                                    <tr> 
                                      <td valign="top"> 
                                        <div align="justify">
                                          <table width="100%" border="0" cellspacing="3" cellpadding="0">
                                            <tr>
                                              <td><div align="justify">
                                                  <p><a href="clientes.asp" class="link1p">Conhe&ccedil;a 
                                                    alguns de nossos principais 
                                                    clientes</a></p>
                                                  <p><a href="divulgue.asp" class="link1p">Divulgue 
                                                    seu site em mais de 200 sistemas 
                                                    de buscas nacionais.</a></p>
                                                  <p><a href="vantagens.asp" class="link1p">vantagens 
                                                    dos clientes MVZ Web Hosting</a></p>
                                                  <p><a href="http://www.mrterras.com.br" target="_blank" class="link1p">Visite 
                                                    o site destaque do m&ecirc;s 
                                                    </a></p>
                                                </div></td>
                                            </tr>
                                          </table>
                                        </div></td>
                                    </tr>
                                    <tr> 
                                      <td valign="top">&nbsp;</td>
                                    </tr>
                                  </table></td>
                              </tr>
                            </table></td>
                        </tr>
                        <tr> 
                          <td height="31" valign="top" background="images/rodape2.jpg"> 
                            <div align="center"> 
                              <p><br />
                                <font color="#FFFFFF" size="1" face="Arial">Copyright 
                                &copy; 2005 MVZ WEB HOSTING - Todos os direitos 
                                reservados - Design e desenvolvimento:<a href="contato.asp" class="link1p"> 
                                MAURO V. ZANCHIN</a></font></p>
                              </div></td>
                        </tr>
                      </table>
                    </div></td>
                </tr>
              </table>
              
            </td>
          </tr>
        </table>
      </div></td>
  </tr>
</table>
<map name="Map" id="Map">
  <area shape="rect" coords="564,3,592,18" href="default.asp" alt="P&aacute;gina principal" />
  <area shape="rect" coords="660,3,693,19" href="contato.asp" />
</map>
</body>
</html>
<%
rsnews.Close()
Set rsnews = Nothing
%>
<%
rssecao.Close()
Set rssecao = Nothing
%>

