function show(id) {
var e = document.getElementById(id);
if(e.style.display == 'none')
e.style.display = 'inline';
else
e.style.display = 'none';
}

function over(id) {
var f = document.getElementById(id);
f.style.backgroundColor = '#009966';
f.style.color = '#FFFFFF';
}

function out(id) {
var g = document.getElementById(id);
g.style.backgroundColor = '#FFFFFF';
g.style.color = '#537691';
}

function popUp(strURL,strType,strHeight,strWidth) {
var strOptions="";
if (strType=="console") strOptions="resizable,height="+strHeight+",width="+strWidth;
if (strType=="fixed") strOptions="status,height="+strHeight+",width="+strWidth;
if (strType=="elastic") strOptions="toolbar,menubar,scrollbars,resizable,location,height="+strHeight+",width="+strWidth;
window.open(strURL, 'newWin', strOptions);
}