// JScript File
function GetDate(CtrlName)    
{
    ChildWindow = window.open('getDate.aspx?FormName=' + 
		          document.forms[0].name + '&CtrlName=' + 
                  CtrlName, "getDate", "width=230,height=320,top=200,left=200,toolbars=no,scrollbars=no,status=no,resizable=no");    
}

function largeView(_id)
{
    var width, height;

    width = screen.width - 100;
    height = screen.height - 200;

    ChildWindow = window.open('LargeView.aspx?id=' + _id, "largeView", 'width=' + width + ',height=' + height + ',top=0,left=0,toolbars=no,scrollbars=no,status=no,resizable=yes'); 

    return false;
}

function helpPage()
{
    var width, height;

    ChildWindow = window.open('help.htm', "Help", 'width=500px,height=600px,top=100,left=100,toolbars=no,scrollbars=yes,status=no,resizable=no'); 

    return false;
}

function CheckWindow()   
{      
     ChildWindow.close();   
}