function GoPopHome(phono) {
	w=650;
	h=520;
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? ((screen.height-h)/2)-20 : 0;
	settings =
	'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=no,location=no,resizable=yes,statusbar=no,menubar=no';
	if(phono=="Automático") { pagego ='http://www.argentina.com/software/multidiscador.x'; }
	else { pagego ="http://free.internet.argentina.com/ins.php?phonenumber="+phono; }
	newwindow = window.open(pagego,'Go_Pop_Home',settings);
	return(false);
}
function GoMulti(){
w=412;
h=435;
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? ((screen.height-h)/2)-20 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=yes,location=no,resizable=yes,statusbar=no,menubar=no';
pagego ='/software/multidiscador.x';
newwindow = window.open(pagego,'MultiDiscador',settings);
return false;
}

function isEmail(str) {
  var supported = 0;
  if (window.RegExp) {
    var tempStr = "a";
    var tempReg = new RegExp(tempStr);
    if (tempReg.test(tempStr)) supported = 1;
  }
  if (!supported) 
    return (str.indexOf(".") > 2) && (str.indexOf("@") > 0);
  var r1 = new RegExp("(@.*@)|(\\.\\.)|(@\\.)|(^\\.)");
  var r2 = new RegExp("^.+\\@(\\[?)[a-zA-Z0-9\\-\\.]+\\.([a-zA-Z]{2,3}|[0-9]{1,3})(\\]?)$");
  return (!r1.test(str) && r2.test(str));
}

function valid() {

if(!document.reseller.nombre.value){alert("Por favor ingrese su Nombre");document.reseller.nombre.focus();return false;}

if(!document.reseller.apellido.value){alert("Por favor ingrese su Apellido");document.reseller.apellido.focus();return false;}

if(!document.reseller.telefono.value){alert("Por favor ingrese su número de teléfono");document.reseller.telefono.focus();return false;}

if(!document.reseller.email.value){alert("Por favor ingrese su e-mail");document.reseller.email.focus();return false;}
if(isEmail(document.reseller.email.value)==false){alert ("Por favor ingrese una dirección de e-mail valida");document.reseller.email.focus();return false;}

if(!document.reseller.empresa.value){alert("Por favor ingrese el nombre de su empresa");document.reseller.empresa.focus();return false;}

if(!document.reseller.web.value){alert("Por favor ingrese la URL de su sitio web");document.reseller.web.focus();return false;}

if(!document.reseller.producto.value){alert("Por favor elija un producto del listado");document.reseller.producto.focus();return false;}

w=423;
h=207;
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? ((screen.height-h)/2)-20 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=yes,location=no,resizable=yes,statusbar=no,menubar=no';
pagego ='enviar.php?nombre='+document.reseller.nombre.value+'&apellido='+document.reseller.apellido.value+'&telefono='+document.reseller.telefono.value+'&email='+document.reseller.email.value+'&empresa='+document.reseller.empresa.value+'&web='+document.reseller.web.value+'&producto='+document.reseller.producto.value;
newwindow = window.open(pagego,'Envio_Datos',settings);

}