function swvis(id)
{
	if(document.all)
		OBJ = document.all(id).style;
	else if(document.getElementById)
		OBJ = document.getElementById(id).style;
	if(OBJ)
		OBJ.display=='none'?OBJ.display='':OBJ.display='none';
}

function vis(id)
{
	if(document.all)
		OBJ = document.all(id).style;
	else if(document.getElementById)
		OBJ = document.getElementById(id).style;
	if(OBJ)
		OBJ.display='';
}

function invis(id)
{
	if(document.all)
		OBJ = document.all(id).style;
	else if(document.getElementById)
		OBJ = document.getElementById(id).style;
	if(OBJ)
		OBJ.display='none';
}

function dis(id)
{
	if(document.all)
		OBJ = document.all(id).style;
	else if(document.getElementById)
		OBJ = document.getElementById(id).style;
	if(OBJ)
		OBJ.visibility='visible';
}

function indis(id)
{
	if(document.all)
		OBJ = document.all(id).style;
	else if(document.getElementById)
		OBJ = document.getElementById(id).style;
	if(OBJ)
		OBJ.visibility='hidden';
}
