function showHide(show,hide){
	//alert(show+","+hide);
	document.getElementById(hide).style.display = 'none';
	document.getElementById(show).style.display = 'block';
}

function setTabs(current,other)
{
	var setThis;
	for(t in other)
	{
		setThis = other[t];
		document.getElementById(setThis).className = "";
	}
	document.getElementById(current).className = "current";
}

function getURL(url){
	window.location = url;
}
