//show the datasettings panel
function togglePane(param)
{
if (document.getElementById)
{
// this is the way the standards work
var style1 = document.getElementById(param).style;
style1.display = style1.display? "":"none";	
}
else if (document.all)
{
// this is the way old msie versions work
var style1 = document.all[param].style;
style1.display = style1.display? "":"none";
}
else if (document.layers)
{
// this is the way nn4 works
var style1 = document.layers[param].style;
style1.display = style1.display? "":"none";
}
}

//show the subscribe panel
function toggleSubscribeOn()
{
if (document.getElementById)
{
var style1 = document.getElementById("subscribeOff").style;
style1.display = "none";	
var style2 = document.getElementById("subscribeOn").style;
style2.display = "block";	
}
}

//show the subscribe panel
function toggleSubscribeOff()
{
if (document.getElementById)
{
var style1 = document.getElementById("subscribeOn").style;
style1.display = "none";	
var style2 = document.getElementById("subscribeOff").style;
style2.display = "block";	
}
}