﻿// Copyright Zerone Consulting Pvt. Ltd. 2010
//
// All rights are reserved. Reproduction or transmission in whole or in part,in
// any form or by any means, electronic, mechanical or otherwise, is prohibited
// without the prior written consent of the copyright owner.
//
// Filename      :	TORMSMaster.js
// Purpose       :  TORMSMaster.js
// Creation Date :	20 May 2010
// Author        :	jithin Jose
// 
// Change History
// Changed By :
// Date :
// Purpose :

$(document).ready
(
    function()
    {
        var autoLogin = getValueFromQueryString("ReturnUrl");
        var autoLogin2 = getValueFromQueryString("autologin");
        if (autoLogin != null && autoLogin.length >= "1")
        {
            $("a[id*='lnkLogin']").trigger('click');
        }
        else if (autoLogin2 != null && autoLogin2 == "1")
        {
            $("a[id*='lnkLogin']").trigger('click');
        }
        else
        {
            if (location.href.indexOf("ReturnUrl") >= 0)
            {
                $("a[id*='lnkLogin']").trigger('click');
            }
        }
    }
);

   
