/*
Author: Adrian Leung
CopyRight (c) Adrian Leung 2007, All Right Reserved.
Email: adrian_ait@hotmail.com
Method: Open and Close Items
*/

function open(variable) {
document.getElementById(variable).style.display="list-item";
}

function close(variable) {
document.getElementById(variable).style.display="none";
} 
