function list(what)
{
var theDivs = document.getElementsByTagName('div');
for(var i = 0; i < theDivs.length; i++)
{
if(theDivs[i].id.search('list') == 0)
{
theDivs[i].style.display = 'none';
}
}
document.getElementById('list'+what).style.display = 'block';
}
window.onload = function()
{
var theDivs2 = document.getElementsByTagName('div');
for(var j = 0; j < theDivs2.length; j++)
{
if(theDivs2[j].id.search('list') != -1)
{
theDivs2[j].style.display = 'none';
}
}
}

function list(what)
{
var theDivs = document.getElementsByTagName('div');
for(var i = 0; i < theDivs.length; i++)
{
if(theDivs[i].id.search('list') == 0)
{
theDivs[i].style.display = 'none';
}
}
document.getElementById('list'+what).style.display = 'block';
}
window.onload = function()
{
var theDivs2 = document.getElementsByTagName('div');
for(var j = 0; j < theDivs2.length; j++)
{
if(theDivs2[j].id.search('list') != -1)
{
theDivs2[j].style.display = 'none';
}
}
}

function link(what)
{
var theLinks = document.getElementsByTagName('div');
for(var i = 0; i < theLinks.length; i++)
{
if(theLinks[i].id.search('link') == 0)
{
theLinks[i].style.display = 'none';
}
}
document.getElementById('link'+what).style.display = 'block';
}
window.onload = function()
{
var theLinks2 = document.getElementsByTagName('div');
for(var j = 0; j < theLinks2.length; j++)
{
if(theLinks2[j].id.search('link') != -1)
{
theLinks2[j].style.display = 'none';
}
}
}

function checkForm() {
answer = true;
if (siw && siw.selectingSomething)
	answer = false;
return answer;
}//
