/**  JavaScript - Pop Up Window   **/


function hideDiv(id) { 
if (document.getElementById) { // DOM3 = IE5, NS6 
//document.getElementById('hideshow').style.visibility = 'hidden'; 
document.getElementById(id).style.visibility = 'hidden'; 
document.getElementById(id).style.display = 'none'; 
} 
else { 
if (document.layers) { // Netscape 4 
//document.hideshow.visibility = 'hidden'; 
id.visibility = 'hidden';  
id.style.display = 'none'; 
} 
else { // IE 4 
//document.all.hideshow.style.visibility = 'hidden'; 
document.all.id.style.visibility = 'hidden';  
document.all.id.style.display = 'none'; 
} 
} 
}

function showDiv(id) { 
if (document.getElementById) { // DOM3 = IE5, NS6 
//document.getElementById('hideshow').style.visibility = 'visible'; 
document.getElementById(id).style.visibility = 'visible';  
document.getElementById(id).style.display = 'block'; 
} 
else { 
if (document.layers) { // Netscape 4 
//document.hideshow.visibility = 'visible'; 
document.id.visibility = 'visible'; 
document.id.style.display = 'block'; 
} 
else { // IE 4 
//document.all.hideshow.style.visibility = 'visible'; 
document.all.id.style.visibility = 'visible'; 
document.all.id.style.display = 'block'; 
} 
} 
} 
