<!--

//Main.JS

function setAction(form, newAction)
{
	form.action = newAction;
	return;
}

function openCentered(theURL,winName,winWidth,winHeight,features) {
	var w = (screen.width - winWidth)/2;
	var h = (screen.height - winHeight)/2 - 30;
	features = features+',width='+winWidth+',height='+winHeight+',top='+h+',left='+w;
	exitstat = window.open(theURL,winName,features);
}

function hint(oID)
	{
		var x;
		x = document.getElementById(oID);
		if (x.style.visibility == 'visible')
		{
			x.style.visibility = 'hidden';
		}
		else
		{
			x.style.visibility = 'visible';
		}
		return;
}


// -->
