   
function admin() 
   {
open("admin/login.asp","admin","width=950,height=700,status=0,scrollbars=0")
   }
   
   



function setprov(x) {
df=document.forms[x]
if (df.nazione.value=="Italia") {
df.provincia.disabled = false
}
else {df.provincia.disabled = true}
}


function getajax(qstr,ndiv) {
	//alert(qstr)
                $.ajax({
                  type: "GET",
				  cache: false,
                  url: "ajaxscripts.asp?"+qstr,
                  success: function(msg){
                           $("#"+ndiv).html(msg);
                  }
                });
	}
