mucho progress on notifier, email style dfrn url's

This commit is contained in:
Mike Macgirvin 2010-07-08 07:03:25 -07:00
parent e98aaa3cbd
commit 9a6a60a9c1
9 changed files with 181 additions and 34 deletions

12
include/main.js Normal file
View file

@ -0,0 +1,12 @@
function openClose(theID) {
if(document.getElementById(theID).style.display == "block") {
document.getElementById(theID).style.display = "none"
}
else {
document.getElementById(theID).style.display = "block"
}
}
function openMenu(theID) {
document.getElementById(theID).style.display = "block"
}