
//Set the tool tip message you want for each link here.
var tip=new Array
   tip[0]='Managers of Volunteers ensure that volunteers are recruited and engaged effectively, and that volunteer involvement standards are consistently applied within the organization. Increasingly, management of volunteer resources is viewed as a function of human resource management.<br><br>For more information go to: <a href="http://volunteeralberta.ab.ca/vault/" target="_blank">http://volunteeralberta.ab.ca/vault/</a>. <br><br><a href="javascript:void(0)" onClick="hidetip();">Close tip</a>'
   tip[1]='Screening is a process designed to create and maintain a safe environment. This process involves identifying any activity of a volunteer position which by virtue of the responsibilities of the position could bring about harm to children, youth, or vulnerable persons.<br><br>The screening process also ensures the most appropriate match is made between volunteer and task. Screening involves recruiting, selecting, and managing volunteers. Some examples include: training, application, interviews, orientation, and confidentiality and disclosure. <br><br><a href="javascript:void(0)" onClick="hidetip();">Close tip</a>'
   
function showtip(current,e,num)
{
 if (document.layers) // Netscape 4.0+
    {
     theString="<DIV CLASS='ttip'>"+tip[num]+"</DIV>"
     document.tooltip.document.write(theString)
     document.tooltip.document.close()
     document.tooltip.left=e.pageX+14+'px'
     document.tooltip.top=e.pageY+2+'px'
     document.tooltip.visibility="show"
    }
 else
   {
    if(document.getElementById) // Netscape 6.0+ and Internet Explorer 5.0+
      {
       elm=document.getElementById("tooltip")
       elml=current
       elm.innerHTML=tip[num]
       elm.style.height=elml.style.height
       elm.style.top=parseInt(actualTop(elml)+elml.offsetHeight-document.getElementById("content").offsetTop-15)+'px'
       elm.style.left=parseInt(actualLeft(elml)+elml.offsetWidth+10-document.getElementById("content").offsetLeft)+'px'
       elm.style.visibility = "visible"
      }
   }
}
function actualLeft(el)
{
	var result = el.offsetLeft;
	while (el = el.offsetParent)
	{
		result += el.offsetLeft;
	}
	return result;
}
function actualTop(el)
{
	var result = el.offsetTop;
	while (el = el.offsetParent)
	{
		result += el.offsetTop;
	}
	return result;
}
function hidetip(){
if (document.layers) // Netscape 4.0+
   {
    document.tooltip.visibility="hidden"
   }
else
  {
   if(document.getElementById) // Netscape 6.0+ and Internet Explorer 5.0+
     {
      elm.style.visibility="hidden"
     }
  } 
}
