// The following code is legally protected under U.S. and International copyright laws.
// Governed under Title 17 of the United States Code and the Berne Convention.
// Unauthorized reproduction of this code is strictly prohibited.
// Violators will be found and prosecuted under the full extent of the law.
// Copyright © 2005-2010, Brain Bliss. All rights reserved.

function toggleSub(submenu){
if (document.getElementById(submenu).style.display == "none"){
document.getElementById(submenu).style.display = "block"
}
else{
document.getElementById(submenu).style.display = "none"
}
}