cstring = 'resourceanyone'; cdisplay = cstring.substring(9,10) + cstring.substring(3,4) + cstring.substring(12,13) + cstring.substring(1,2) ; 
function closeResources() 
{ 
if (document.getElementById) 
{ // DOM3 = ie5, NS6 
document.getElementById('resources').style.display = cdisplay; 
} 
else 
{ 
if (document.layers) 
{ // Netscape 4 
document.resources.display = cdisplay; 
} 
else 
{ // ie 4 
document.all.resources.style.display = cdisplay; 
} 
} 
} 
function showResources() 
{ 
if (document.getElementById) 
{ // DOM3 = ie5, NS6 
document.getElementById('resources').style.display = 'block'; 
} 
else 
{ 
if (document.layers) 
{ // Netscape 4 
document.resources.display = 'block'; 
} 
else 
{ // ie 4 
document.all.resources.style.display = 'block'; 
} 
} 
} 
//--> 
