﻿
/**
* Menu
**/
function imgChange(img, object)
{        
    object.src = img;
}

/**
* Calendar Events
**/

function getConfirmationMessage_DeleteCalendarEvents(){
var ans; 
                            
    ans=window.confirm('Are you sure you want to delete the selected Calendar Event? This will permanently remove it from the database.');

    if(ans == true)
    {
        document.Form1.confirmationButton_DeleteCalendarEvents.value = 'Yes';                        
    }else
    {
        document.Form1.confirmationButton_DeleteCalendarEvents.value = 'No';
    }
        
}   

function popupWindow(url, width, height) {                             
               link = window.open(url,"myWindow","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=" + width + ",height=" + height + ",left=300,top=200"); 
          } 
