Can someone please tell me what this script does? The top two functions seem to change the color of something if you click on it and then again when you stop clicking, but what is "element"? The third, I have no idea. Thanks! kuau
<!--
function onleftbutton(element){
element.style.backgroundColor="#E2E2E2";
element.style.color='#285276';
}
function offleftbutton(element){
element.style.backgroundColor="#F8F8F8";
element.style.color='#000000';
}
function MM_openBrWindow(theURL,winName,features) {
window.open(theURL,winName,features);
}
//-->
