/////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2002 Click2Learn Corporation
//
// The copyright to the computer software herein is proprietary and remains
// the property of Click2Learn, USA. It may be used and/or copied only with
// the written consent of Click2Learn or in accordance with the terms and
// conditions stipulated in the agreement/contract under which this software
// has been supplied.
//
// $Id: LMS_LearnerHome.js,v 1.7 2003/01/14 01:05:37 nedv Exp $
// $Date: 2003/01/14 01:05:37 $
// $RCSfile: LMS_LearnerHome.js,v $
// $Revision: 1.7 $
//
// Abstract:
//
//    Browser class to identify browsers and operating system
//
// Revision History:
//
//    2002-02-25   Anand Arvind    Created file
//
/////////////////////////////////////////////////////////////////////////////

function Content_OnLoad(strUserID)
{

    //
    // Initialize page
    //
    _UTL_PageInit();

    //
    // Initialize navigation menu
    //
    _UTL_NavMenu_OnLoad();
    
}

function LMS_Training_Launch(nEvtID)

{

	var strURL = _UTL_GetPagePath("management/LMS_CNT_LaunchCourse.asp?UserMode=0&EventID=") + nEvtID.toString();
    window.location = strURL;
}


