//\\
//\\
//ARAN informatica - AREZZO
//Vietato l'utilizzo anche parziale senza autorizzazione
function dflt() {
c=getCookie("estero")
if (c) document.AW.where.value=getCookie("estero")
c=getCookie("usa")
if (c) document.AW.selcity.value=getCookie("usa")
}
var xq=0
function iquadro(url,w,h,b,s){
if (navigator.appName=="Netscape" && parseInt(navigator.appVersion)<5) {
btv=window.open(url,xq,"width="+w+",height="+h+",resizable=no,scrollbars="+s+",status=no,menubar=no,canali=no,location=no,directories=no"); xq=xq+1;
document.write("Occorre NETSCAPE 6 per avere il testo qui.")
}
else document.write("")
}
function vai(s) {if (s) location='http://'+s}
//COOKIES
function setCookie(name, value, expires, path, domain, secure) {
var curCookie = name + "=" + escape(value) +
((expires) ? "; expires=" + expires.toGMTString() : "") +
((path) ? "; path=" + path : "") +
((domain) ? "; domain=" + domain : "") +
((secure) ? "; secure" : "");
document.cookie = curCookie;
}
function getCookie(name) {
var dc = document.cookie;
var px = name + "=";
var begin = dc.indexOf("; " + px);
if (begin == -1) {
begin = dc.indexOf(px);
if (begin != 0) return null;
} else
begin += 2;
var end = document.cookie.indexOf(";", begin);
if (end == -1)
end = dc.length;
return unescape(dc.substring(begin + px.length, end));
}
function fixDate(date) {
var skew = new Date(0).getTime();
if (skew > 0)
date.setTime(date.getTime() - skew);
}