function pptysch(xproperty)
{
var xproc=new String()
xproc = xproperty;
if ( (xproc.substr(0,4) != 'AC68') && (xproc.substr(0,4) != 'BG74') && (xproc.substr(0,4) != 'AC66') )
   {
   xproc = ' AC68'+ xproc.substr(4,xproc.length-4)
   } 
 
var newWin=window.open('http://www.argenprop.com.ar/buscador_caracteristicas/shwxproperty.asp?idpropiedad=' + xproc + '&eng=N','MASDATOS',"toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=no,width=500,height=471,top=0,left=0");
}
function submitenter(myfield,e,xValue)
{
var keycode;
if (window.event) keycode = window.event.keyCode;
else if (e) keycode = e.which;
else return true;
 
if (keycode == 13)
{
    pptysch(xValue);
 return false;
}
else
 return true;
}