//common scripts

<!--
function year(){
if (!document.getElementById)
return
thelement=document.getElementById("copyright");

var date=new Date();
var yy = date.getYear();
var year = (yy < 1000) ? yy + 1900 : yy;
if (year>2009){
var showyear="2009-"+year;
} else {var showyear=year;}
thelement.innerHTML=showyear;
}
window.onload=year
//-->


<!--
function av_linksafe(css,name,domain,linktext) {
document.write('<a class=\"' + css + '\" href=\"mailto:' + name + '@' + domain + '\">');
document.write(linktext + '</a>');
}

function av_pop(w,h,url) { 
x = (screen.availWidth - w)/2;
y = (screen.availHeight - h)/2;

window.open(url, '', 'height=' + h + ',width=' + w + ',scrollbars=1,resizable=1,menubar=0,toolbar=0,status=0,location=0,directories=0,left=' + x + ',top=' + y);
}
// -->