// D.O.M. - code and webdesign by Umberto Sartory; mailto:venetian@tin.it

var scrW;
var scrH;

document.onmouseover = bld;
document.onmouseout = nrm;

function SetWH(a){
var a;
scrW = BD.clientWidth;
scrH = BD.clientHeight;
a.style.top = scrH-25;
}

var bakc;
function bld(){
if(window.event.srcElement.className=="B"){
bakc = window.event.srcElement.style.color;
window.event.srcElement.style.color = "white";
window.event.srcElement.style.fontWeight = "bold";
}
if(window.event.srcElement.className=="BY"){
bakc = window.event.srcElement.style.color;
window.event.srcElement.style.color = "yellow";
window.event.srcElement.style.fontWeight = "bold";
}
}
function nrm(){
if((window.event.srcElement.className=="B")||(window.event.srcElement.className=="BY")){
window.event.srcElement.style.color = bakc;
window.event.srcElement.style.fontWeight = "normal";
}
}
function ref(s){
var l = parent.cwindow.document.all.length;
var i;
if (s=="AIM"){
parent.cwindow.document.all.TIT.style.color = "lime";
}
else{
parent.cwindow.document.all.TIT.style.color = "#003300";
}
for (i=0;i<l;i++){
if ((parent.cwindow.document.all(i).tagName=="DIV")&&(parent.cwindow.document.all(i).id!=s)){
parent.cwindow.document.all(i).style.display = "none";
}
else{
parent.cwindow.document.all(i).style.display = "block";
}
}
}
function NewW(url) {
section = window.open(url,"sect","left=0,top=0,height=550,width=780,status=no,toolbar=no,scrollbars=yes,menubar=no,location=no");
section.focus();
}
function Back(){
history.back();
}
