function tabella($url,$start)
{
	theForm = document.forms["cercazienda"];
    theForm.start.value = $start;
    theForm.action = $url;
//    theForm.btnok.click();
	theForm.submit();
}//tabella

function stripslashes(ch) {
   return ch.replace(/(\\)([\\\'\"])/g,"$2")
}

function addslashes(ch) {
   ch = ch.replace(/\\/g,"\\\\") 
   ch = ch.replace(/\'/g,"\\'") 
   ch = ch.replace(/\"/g,"\\\"")
   return ch
}
function popup(url, larghezza, altezza) {	
	var win=window.open(url,"ins","height="+altezza+",width="+larghezza+",left=30,top=30,screenX=30,screenY=30,scrollbars,resizable");
	win.focus();
}
function tmt_cleanField(obj){
	obj.value = obj.value.replace(/[^\d]/g,"", 0);
	if(obj.value.length == 0 || obj.value == 0){obj.value=''}
}
//AJAX
function getHTTPObject() {
  var xmlhttp;
  /*@cc_on
  @if (@_jscript_version >= 5)
    try {
      xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
    } catch (e) {
      try {
        xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
      } catch (E) {
        xmlhttp = false;
      }
    }
  @else
  xmlhttp = false;
  @end @*/
  if (!xmlhttp && typeof XMLHttpRequest != 'undefined') {
    try {
      xmlhttp = new XMLHttpRequest();
    } catch (e) {
      xmlhttp = false;
    }
  }
  return xmlhttp;
}
function openForum(){
	window.open('inc/phpBB2/','forum','height=580,width=780, top=20, left=20,scrollbars=yes,menubars=no,toolbars=no,resizable=yes,status=yes ');	
}

