﻿var eMsg = 'message';
var eProcess = 'loading';
var eGreenProcess = 'toolbarProcess';

/* SUBMIT YOUR VIDEO */
function submitYourVideo()
{
    MyAccountService.IsUserSignedIn(cbSubmitYourVideo);
}

function cbSubmitYourVideo(r)
{
    if (typeof (r) == 'object')
    {
        if (r.error != '')
        {
            //error
           /* setMessage(r.error, false, getElemOffset(getElem(false, 'ctl00_body_pgHeaderTitle'), 0, 0)[0], getElemOffset(getElem(false, 'ctl00_body_pgHeaderTitle'), 0, 0)[1], eMsg);
            clearMessage(3, eMsg);*/
            location.href = 'SubmitYourVideo.aspx';
            
        }
        else
        {
            location.href = r.url;
        }
    }
    
}



/* CONTEST AND PRIZES */
function contestAndPrizes()
{
    location.href = '/ContestPrizes.aspx';
}
