// JavaScript Document

/***************************************************
* Returns delete confirm message prior to deletion *
***************************************************/
function confirmDelete()
{
	msgDelete = confirm("Are you sure you want to delete this infomation?");
	return msgDelete;	
}	

/************************************************
* Returns a logout message prior to logging out *
************************************************/
function confirmLogout()
{
	msgLogout = confirm("Click 'OK' to logout completely");
	return msgLogout;	
}

/*********************************************************
* Returns change confirm message prior to making changes *
*********************************************************/
function confirmChanges()
{
	msgChanges = confirm("Are you sure you want make these changes?");
	return msgChanges;	
}
		
/********************************************************
* Returns a send message prior to sending email message *
********************************************************/
function confirmSend()
{
	msgSend = confirm("Are you sure you want to send this?");
	return msgSend;	
}
