//***************************************************************************************
// Copyright 2001 Echelon and digital fusion, inc.
//
// This include file contains the OpenCourseWindow function used by the echelon public
// site.
//***************************************************************************************

//=====================================================================================
//Open a KM or Tekamah course in a separate window.
//
//Parameters:
//  url          - The url of the course.
//  name         - The name of the window.
//  windowWidth  - The width of the window.
//  windowHeight - The height of the window.
//=====================================================================================
function OpenCourseWindow(url, name, windowWidth, windowHeight)
{
    //Open the course window.
    var NewWindow =
        window.open(url, name, 
        'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width=' + windowWidth + ',height=' + windowHeight + ',top=5,left=5');
    return;
}

//=====================================================================================
//Open a CourseWorX course in a separate window.
//
//Parameters:
//  url          - The url of the course.
//  name         - The name of the window.
//=====================================================================================
function OpenCWCourseWindow(url, name)
{
    //Open the course window.
    var NewWindow =
        window.open(url, name, 
        'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=990,height=676,top=0,left=0');
    return;
}

