function MM_reloadPage(init) {  
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
function newClass (e, cls) {
e.className = cls;
}
function ExpandAll(lang){
allImgs = window.document.images.length
allElems = window.document.all.length
for (i=0; i<allImgs; i++) {
m = window.document.images[i];
if (m.className == "Outline") {
m.src = "images/minus.gif";
if (lang == "spanish") {
m.alt = "Plegar";
}
else {
m.alt = "Collapse";
}}}
for (i=0; i<allElems; i++) {
e = window.document.all[i];
if ((e.tagName) == "DIV") {
if (e.style.display = "none") {
(e.style.display = "block");
}}}}
function CollapseAll(lang) {
allImgs = window.document.images.length
allElems = window.document.all.length
for (i=0; i<allImgs; i++) {
m = window.document.images[i];
if (m.className == "Outline") {
m.src = "images/plus.gif";
if (lang == "spanish") {
m.alt = "Expandir";
}
else {
m.alt = "Expand";
}}}
for (i=0; i<allElems; i++) {
e = window.document.all[i];
if ((e.tagName) == "DIV") {
var x = e.id.substring(e.id.length-1,e.id.length);
if (x == "x") {
(e.style.display = "none");
}}}}
