if(top.frames.length==0)top.window.location = "../index.php?pag=" + window.location.href;

function getID(divID) {
if(document.getElementById)return document.getElementById(divID);
if(document.all)return document.all[divID];
return false;
}

var toondiv = false
function toon(){
if(toondiv==false){
getID('div1').style.display = 'block';
toondiv = true;
}else{
getID('div1').style.display = 'none';
toondiv = false;
} }
