
function switchState( id ) 
{ 
  if( document.getElementById )
  {
    if(document.getElementById(id).style.display != 'block') 
    { 
  	  document.getElementById(id).style.display = 'block';
    } 
    else 
    { 
  	  document.getElementById(id).style.display = 'none';
    }
  }
}


function signupSwitchOn( id )
{
  if( document.getElementById )
  {
    document.getElementById( id ).className = 'lightblueback';
    if( document.getElementById( id + 'info' ) )
    {
      document.getElementById( id + 'info' ).style.display = 'block';
    }
    document.getElementById( id + 'field' ).className = 'signupinputactive';
  }
}


function signupSwitchOff( id )
{
  if( document.getElementById )
  {
    document.getElementById( id ).className = '';
    if( document.getElementById( id + 'info' ) )
    {
      document.getElementById( id + 'info' ).style.display = 'none';
    }
    document.getElementById( id + 'field' ).className = 'textbox2';
  }
}

function verifySignupData()
{
  if( document.getElementById )
  {
    
    
  } 
}