﻿function OpenDetail(url, width, height)
{
    if (width==null) width = 400;
    if (height==null) height = 300;
    
    leftVal = (screen.width - width) / 2;
    topVal = (screen.height - height) / 2;

    window.open(url, 'Detail', 'width='+width+',height='+height+',left='+leftVal+',top='+topVal+',toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no');
}

function OpenDetailDetail(url, width, height)
{
    if (width==null) width = 400;
    if (height==null) height = 300;
    
    leftVal = (screen.width - width) / 2;
    topVal = (screen.height - height) / 2;

    window.open(url, 'DetailDetail', 'width='+width+',height='+height+',left='+leftVal+',top='+topVal+',toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no');
}

function PickDate()
{
    eo_ShowPopupCalendar('PopupCalendar1', 'btnPickDate');
}

function OnCalendarSelect(calendar)
{
    //alert(calendar.formatDate(calendar.getSelectedDate(), 'dd/MM/yyyy'));
    eo_Callback('Callback1', calendar.formatDate(calendar.getSelectedDate(), 'yyyy-MM-dd'));
}
