/*
*Author     : Matthew Allan Newman, Move Social Networking Platform
*Description: Move SNP Version 1.0
*
*Copyright (c) 2008-2009
*Matthew Allan Newman & Move Social Networking Platform,
*All rights reserved.
*Refer to license included with the distribution.
*/


function clearEmailField()
{
    document.getElementById('login_email').value='';
}
function changeEmailFieldReturn()
{
    document.getElementById('login_email').value='email address';
}

function changePasswordField()
{
    /*document.getElementById('password').type="password";
    *document.getElementById('password').value='';
    */
    document.getElementById('fpassword').style.display='none'; 
    document.getElementById('rpassword').style.display='inline'; 
    document.getElementById('rpassword').focus();
}
function changePasswordFieldReturn()
{

        document.getElementById('fpassword').style.display='inline'; 
        document.getElementById('rpassword').style.display='none';
    
}
function changeCommentField()
{
    document.swirl_input.comment_swirl.innerHTML='';
}