function onEmailFocus( obj )
{
	if( 'Logga in. E-postaddress.' == obj.value )
		obj.value = '';
}

function onEmailBlur( obj )
{
	if( '' == obj.value )
		obj.value = 'Logga in. E-postaddress.';
}

window.onload = function( )
{
	obj = document.getElementById( '_ctl0__ctl0__ctl0_login_user' );

	if( obj )
		obj.value = 'Logga in. E-postaddress.';
}

function onPassFocus( obj )
{
	/*dummy = document.getElementById( 'passwordinput' );
	real = document.getElementById( 'passwordinput' ).nextSibling;

	do real = real.nextSibling;
	while( real && 1 != real.nodeType );

	dummy.style.display = 'none';
	real.style.display = '';*/
}

function onPassBlur( obj )
{
	/*dummy = document.getElementById( 'passwordinput' );
	real = document.getElementById( 'passwordinput' ).nextSibling;

	do real = real.nextSibling;
	while( real && 1 != real.nodeType );

	if( '' == real.value )
	{
		dummy.style.display = '';
		real.style.display = 'none';
	}*/
}