/*
function aziende($start)
{
	theForm = document.forms["cercazienda"];
    theForm.start.value = $start;
    theForm.btnok.click();
}//aziende
*/
function tabella($url,$start, tabella)
{
	//alert(tabella)
	if(tabella=='aziende')
	{
		theForm = document.forms["cercazienda"];
	    theForm.start.value = $start;
	//    document.location.href = $url;
	    theForm.action = $url;
	    theForm.ancora.value = "#barra";
	    //alert($url)
	    theForm.btnok.click();
	//	theForm.submit();
	}
	if(tabella=='news')
	{
		theForm = document.forms["cercazienda"];
	    theForm.start.value = $start;
		document.location.href = $url+"&start="+$start+"#barra";
	    //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();
}


