<!-- 
function confirmDelete()
{
  return confirm('Do you really want to delete this?');
}
// Functions to close windows when session times out
// Used with permission thanks to Tami Williams, 12/20/07
if (screen) {
	var leftPos = screen.width-950;  // increase the number to move right
	}
function openwin(theURL) { 
  popwin = window.open(theURL, 'thiswin' ,'status=no,history=no,resizable=yes,scrollbars=yes,menubar=no,location=no,toolbar=no,width=350,height=450,left='+leftPos+',top=200') // increase top number to move down
	popwin.focus();
}
function openlogoutwin(theURL) { 
	popwin = window.open(theURL, 'thiswin' ,'status=no,history=no,resizable=no,scrollbars=no,menubar=no,location=no,toolbar=no,width=475,height=400left='+leftPos+',top=200') // Increase top number to move down
	popwin.focus();
}
// End  -->
