// JavaScript Document
function CreateXmlHttpReq(handler) {

  var xmlhttp = null;
  try {
    xmlhttp = new XMLHttpRequest();
  } catch(e) {
    try {
        xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
    } catch(e) {
        xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
    }
  }
  xmlhttp.onreadystatechange = handler;
  return xmlhttp;
}

function carica_pagina1(){
	document.getElementById("form_rete_vendita1").submit();
}
function carica_pagina2(){
	document.getElementById("form_rete_vendita2").submit();
}
