<!--
function ShowCalendar(e, DataField, Value) {
    var x = y = 0;

    if (e != '') {
        x = e.screenX;
        y = e.screenY;
    }
    
    calendar_window = window.open('../Calendar.aspx?formname=' + DataField + '&Value=' + Value,'calendar_window', 'width=160,height=195,screenX=' + x + ',screenY=' + y + ',left=' + x + ',top=' + y);
    
    calendar_window.focus();
    
    return false;
}


function ShowSlideShow(URL) {
    slideshow_window = window.open(URL, 'slideshow_window', 'width=510, height=550, left=50, top=20');
    
    slideshow_window.focus();
    
    return false;
}


function ConfirmAction(form, Message) {
	if (confirm(Message)) {
		return true;
	}
	else {
		return false;
	}
}

//-->
