
<html>
<head>
<META NAME="GENERATOR" Content="MC4 - Content Management NEORIS - (C) 2001-2006">
<title>
Conservador de Bienes Raices de Santiago - CBRS
</title>
<script language="javascript" src="Js/textsizer.js"></script>
<script language=javascript>

function ValidaFormularioCBRS_01()
{ 
    var ok;
    ok=1;
    if (frmFormulario.txtMail.value=="") ok=0;
    if (frmFormulario.txtDireccion.value=="") ok=0;
    if (frmFormulario.cboRegion.value=="00") ok=0;    
    if (frmFormulario.cboCiudad.value=="00") ok=0;    
    if (frmFormulario.cboComuna.value=="00") ok=0;        
    if (frmFormulario.txtFono.value=="") ok=0;            
    
    if (ok==0) {
      alert("Por favor llene y seleccione todos los campos y opciones del formulario");
      return false;
      }
    if (ok==1) {
      ValidaRutCompleto(frmFormulario.txtRut.value);
      return true;
      }

}

function ValidaFormularioCBRS_02()
{ 
    var ok;
    ok=1;
    if (frmFormulario.txtMail.value=="") ok=0;
   // if (frmFormulario.txtEmailEmpresa.value=="") ok=0;    
    
    if (frmFormulario.txtRazon.value=="") ok=0;    
    if (frmFormulario.txtRutEmpresa.value=="") ok=0;    
    if (frmFormulario.txtDireccion.value=="") ok=0;
    if (frmFormulario.txtDireccionEmpresa.value=="") ok=0;

    if (frmFormulario.cboRegion.value=="00") ok=0;    
    if (frmFormulario.cboCiudad.value=="00") ok=0;    
    if (frmFormulario.cboComuna.value=="00") ok=0;        

    if (frmFormulario.cboRegionEmpresa.value=="00") ok=0;    
    if (frmFormulario.cboCiudadEmpresa.value=="00") ok=0;    
    if (frmFormulario.cboComunaEmpresa.value=="00") ok=0;        

    if (frmFormulario.txtFono.value=="") ok=0;            
    if (frmFormulario.txtFonoEmpresa.value=="") ok=0;                
    
    if (ok==0) {
      alert("Por favor llene y seleccione todos los campos y opciones del formulario");
      return false;
      }
    if (ok==1) {
      ValidaRutCompleto(frmFormulario.txtRut.value);
      return true;
      }

}

function PreValidaPagoDB()
{ 
   if (confirm('ATENCION: Usted a seleccionado la forma de pago via DEPOSITO BANCARIO, Confirme su compra [OK] o Cancele [CANCEL] para seleccionar otra forma de Pago.'))
	 {
	  validaPago();
	 } 
   else
     {
      document.fromPago.optFormaPago[0].checked=false;
      document.fromPago.optFormaPago[1].checked=false;	      
     }	 	 
}

function PreValidaPagoWP()
{ 
   if (confirm('ATENCION: Usted a seleccionado la forma de pago via TARJETA DE CREDITO (WEBPAY), Confirme su compra [OK] o Cancele [CANCEL] para seleccionar otra forma de Pago.'))
	 {
	  validaPago();
	 } 
   else
     {
      document.fromPago.optFormaPago[0].checked=false;
      document.fromPago.optFormaPago[1].checked=false;	      
     }	 	 
}

</script>


<script language="javascript">
function ValidaRutCompleto(x)
{
    var mult = "234567234";
    var i;

    if (x.length == 10)
    {
        var rut  = x.substring(0,8);
        var digi = x.substring(9,10);
    }
    else
    {
        var rut = x.substring(0,7);
        var digi = x.substring(8,9);
    }

     var Sum, Rest, Verif;

    digi= digi.toUpperCase();
    Sum = 0;
    if ( rut.length == 7 )
        NuevoRut = "0" + rut;
    else
        NuevoRut = rut;
		
    for (i = NuevoRut.length; i > 0; i-- )
    {
        Sum += parseInt(mult.charAt(8-i)) * parseInt(NuevoRut.substring(i-1,i));
    }

    Rest = 11 - (Sum % 11);
    if ( Rest == 11 ) 
        Verif = "0";
    else 
    {
        if ( Rest == 10 )
            Verif = "K";
        else
            Verif = Rest;
    }
    if ( digi != Verif || rut.length < 7)
       alert("El Rut " + rut + " no corresponde al digito verificador " + digi + ", corregir");
    else
       document.frmFormulario.submit();
}
</script>

<link rel="stylesheet" href="css/style.css" type="text/css">
<link href="estilos3.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="css/style.css" type="text/css">
<link href="estilos3.css" rel="stylesheet" type="text/css">

<script language="javascript">
        var bites = document.cookie.split("; "); 

        function getCookie(name) 
        { 
	      for (var i=0; i < bites.length; i++) 
	        {
		      nextbite = bites[i].split("="); 
		      if (nextbite[0] == name) 
			      return unescape(nextbite[1]); 
	        }
	      return null;
        }
        
        function setCookie(name, value) 	
        { 
	      var days = 360;
		  var date = new Date();
		  date.setTime(date.getTime()+(days*24*60*60*1000));
		  var expires = "; expires="+date.toGMTString();
	      document.cookie = name+"="+value+expires+"; path=/";
        }        
        
		function TranslatePage(NameLanguage)
		{
		 var CodeLanguage;
		 CodeLanguage=0;
		 if (NameLanguage=="Español") CodeLanguage=0;
		 if (NameLanguage=="English") CodeLanguage=1;
		 if (NameLanguage=="Deutsch") CodeLanguage=2;
		 if (NameLanguage=="Francais") CodeLanguage=3;
		 if (NameLanguage=="Portugues") CodeLanguage=4;
		 window.parent.location="PLT_WRITE-PAGE.asp?SessionId=488416BA-0DAB-471F-9D6D-60C23390108C&Language=" + CodeLanguage + "&Modality=0&Section=&Content=-1&NamePage=HomePage&DateView=&Style=-1";					
        }
        
		function ViewOldEdition(OldDate)
		{
		 window.parent.location="PLT_WRITE-PAGE.asp?SessionId=488416BA-0DAB-471F-9D6D-60C23390108C&Language=0&Modality=0&Section=&Content=-1&NamePage=HomePage&DateView=" + OldDate + "&Style=-1";					
        }

		function PrintContent()        
		{
		 window.parent.location="PLT_WRITE-PAGE.asp?SessionId=488416BA-0DAB-471F-9D6D-60C23390108C&Language=0&Modality=0&Section=1&Content=-1&NamePage=VersionImprimible&DateView=&Style=-1";					
        }
		function CommentsContent()        
		{
		 window.parent.location="PLT_WRITE-PAGE.asp?SessionId=488416BA-0DAB-471F-9D6D-60C23390108C&Language=0&Modality=0&Section=1&Content=-1&NamePage=CommentsContent&DateView=&Style=-1&CommentPage=1";					
        }        
		function TrackBack()        
		{
		 window.parent.location="PLT_WRITE-PAGE.asp?SessionId=488416BA-0DAB-471F-9D6D-60C23390108C&Language=0&Modality=0&Section=1&Content=-1&NamePage=TrackBackContent&DateView=&Style=-1&TrackBackPage=1";					
        }        

        function EmailContent()        
        {
         window.parent.location="PLT_WRITE-PAGE.asp?SessionId=488416BA-0DAB-471F-9D6D-60C23390108C&Language=0&Modality=0&Section=1&Content=1390&NamePage=SendToFriend&DateView=&ContentToSend=-1&NamePageEmail=HomePage&StyleToSend=-1";					
        }
                
  	
</script>

	
</head>
<body>
<div id="navtxt" class="tooltip" style="position:absolute; top:-100px; left:0px; visibility:hidden"></div>
<script language="Javascript" src="alt.js"></script>
<CENTER><CENTER>
<TABLE id=table4 cellSpacing=0 cellPadding=0 border=1>
<TBODY>
<TR>
<TD>
<TABLE id=table5 cellSpacing=0 cellPadding=0 width=0% border=0>
<TBODY>
<TR>
<TD vAlign=top align=left>
<TABLE id=table6 cellSpacing=0 cellPadding=0 width=780 border=0>
<TBODY>
<TR>
<TD><TABLE id=table16 cellSpacing=0 cellPadding=0 border=0>
<TBODY>
<TR>
<TD><IMG height=95 src="/image/home_arriba.jpg" width=779 border=0></TD></TR></TBODY></TABLE></TD></TR>
<TR>
<TD>
<STYLE type=text/css>
a:link {
     font-family:Verdana, Geneva, sans-serif; font-size:15px; color:#FFF; font-weight:normal; 
     text-decoration:none;
  font-weight:bold;
}
a:visited {
    color:#ffffff;
 font-weight: normal;
 text-decoration:none;font-family:Verdana, Geneva, sans-serif; font-size:15px;}
 
a:hover {
  color: #CCC;
  text-decoration:none;font-family:Verdana, Geneva, sans-serif; font-size:15px;font-weight: normal;
}
</STYLE>

<TABLE id=table7 height=341 cellSpacing=0 cellPadding=0 width="100%" background="/image/fondo_homeazul.jpg" border=0>
<TBODY>
<TR>
<TD vAlign=top align=left>
<TABLE id=table17 height=341 cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD vAlign=top align=left>
<TABLE id=table18 cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD><IMG height=128 src="/ImagesMC/flash-home1.jpg" width=779 border=0></TD></TR>
<TR>
<TD>
<TABLE id=table19 cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD width=370><IMG height=57 src="/image/relleno_iz_home.jpg" width=142 border=0></TD>
<TD width=276><A onmouseover="writetxt('Si Ud. desea solicitar documentos y es usuario nuevo debe ingresar a esta sección y registrarse al realizar su primera compra');" onmouseout=writetxt(0); href="PLT_WRITE-PAGE.asp?SessionId=488416BA-0DAB-471F-9D6D-60C23390108C&Language=0&Modality=0&Section=1&Content=23037&NamePage=PGeneralArti&DateView=&Style=-1"><IMG height=57 src="/image/bot_home_publicogral_off.jpg" width=244 border=0></A></TD>
<TD><A onmouseover="writetxt('Si usted ya está registrado en nuestro nuevo portal, le recomendamos esta sección para realizar sus solicitudes');" onmouseout=writetxt(0); href="PLT_WRITE-PAGE.asp?SessionId=488416BA-0DAB-471F-9D6D-60C23390108C&Language=0&Modality=0&Section=1&Content=23051&NamePage=PFrecuenteArti&DateView=&Style=-1"><IMG height=57 src="/image/bot_home_publicofrec_off.jpg" width=262 border=0></A></TD>
<TD><IMG height=57 src="/image/relleno_der_home.jpg" width=131 border=0></TD></TR>
<TR>
<TD>&nbsp;</TD>
<TD vAlign=bottom colSpan=2 height=70>
<TABLE cellSpacing=0 cellPadding=0 width="43%" align=center border=0>
<TBODY>
<TR>
<TD style="BORDER-TOP: #8392b1 1px solid; FONT-SIZE: 15px; BORDER-BOTTOM: #8392b1 1px solid" align=middle height=35><A href="http://www.cbrsantiago.cl/consulta">Verificar Firma Electrónica</A><A href="http://cbrsantiago.cl/consulta/"></A></TD></TR></TBODY></TABLE></TD>
<TD>&nbsp;</TD></TR></TBODY></TABLE></TD></TR>
<TR>
<TD>&nbsp;</TD></TR>
<TR>
<TD></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR>
<TR>
<TD vAlign=top align=left width=780>
<P><TABLE id=table20 cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD width="100%" bgColor=#182852>
<P align=center><FONT face=Verdana color=#ffffff size=1><STRONG><IMG height=11 src="/image/ico_horarios.gif" width=12 border=0></STRONG>&nbsp;Horarios de Atención: Lunes&nbsp;10:00 hr a 19:00 hr -&nbsp;</FONT><FONT face=Verdana color=#ffffff size=1>Martes a Viernes&nbsp;8:30 hr a 15:30 hr</FONT></P></TD></TR></TBODY></TABLE><TABLE id=table20 cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD width="100%" bgColor=#182852>
<P align=center><FONT face=Verdana color=#ffffff size=1><IMG height=11 src="/image/ico_direccion.gif" width=13 border=0>&nbsp;Morandé 440, Santiago</FONT></P></TD></TR></TBODY></TABLE><TABLE id=table20 cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD width="100%" bgColor=#182852>
<P align=center><FONT face=Verdana color=#ffffff size=1><STRONG><IMG height=9 src="/image/ico_telefonos.gif" width=11 border=0></STRONG>&nbsp;390-0800 &nbsp;</FONT></P></TD></TR></TBODY></TABLE></P></TD></TR></TBODY></TABLE><TABLE id=table15 cellSpacing=0 cellPadding=0 border=0>
<TBODY>
<TR>
<TD>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </TD>
<TD>
<P align=center><FONT style="FONT-SIZE: 3pt" face=Verdana color=#1b325d>&nbsp;&nbsp; </FONT><FONT style="FONT-SIZE: 7pt" face=Verdana color=#1b325d><BR>© 2006. Conservador de Bienes Raíces de Santiago - Todos los derechos reservados.<BR>Resolución mínima 800x600, optimizado para IE versiones 6.0 o superiores, requiere javascript, cookies y java vm&nbsp;habilitadas en su browser.<BR></FONT><FONT style="FONT-SIZE: 3pt" face=Verdana color=#1b325d>&nbsp;&nbsp; </FONT></P></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></CENTER></CENTER>
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-428032-2";
urchinTracker();
</script>
</body>
	
</html>


