// JavaScript Document
function fixMenuLink(spanID, hoverState)
{
	//#navList li a:hover .menuText = 
	var spanTag = document.getElementById(spanID);
	if( hoverState == 0 )
		spanTag.style.textDecoration = "none";
	else
		spanTag.style.textDecoration = "underline";
}

function confirm_delete(delDesc)
{
  return confirm("Are you sure you want to delete the " + delDesc + "?\n\nPress \'Ok\' to continue or \'Cancel\' to return to the page.");
}

function confirm_sendEmail()
{
  return confirm("Are you sure you want to send the event email to registrants?\n\nPress \'Ok\' to continue or \'Cancel\' to return to the page.");
}


 function openWindow(type, width, height)
 // standard open window call, only allowing scrolling and resizing
 {
 	open(type, "", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=" + width + ",height=" + height);
	
}