/**
 * @author paul
 */
<!--

	function c_un( box )
	{
		if ( box.value == 'e-mail adres' )
		{
			box.value = '';
		}
	}
	
	function c_pw( box )
	{
		document.getElementById('password_text').style.display='none';
		document.getElementById('password').style.display='block';
//		document.getElementById('password').style.width=78;
		document.getElementById('password').focus();
		
		if ( box.value == '' )
		{
			box.value = 'wachtwoord';
		}
		else if ( box.value == 'wachtwoord' )
		{
			box.value = '';
		}
	}

//-->