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();
}
