/*
 * general scripts used on all pages
 */
function showdomain()
{
	var tabCollection = document.getElementById("userdomain");
	tabCollection.className='tsVisible';
} 
function hidedomain()
{
	var tabCollection = document.getElementById("userdomain");
	tabCollection.className='tsInvisible';
}

function showmod()
{
	var tabCollection = document.getElementById("modinfo");
	tabCollection.className='tsVisible';
}
function hidemod()
{
	var tabCollection = document.getElementById("modinfo");
	tabCollection.className='tsInvisible';
}
function killsignup()
{
    var theForm = document.signup;
    theForm.subbutton.disabled=true;
    theForm.submit.disabled=true;
    theForm.subbutton.value='processing';
    //theForm.submit.className='tsInvisible';
    return true;
}

