function switchImage(imgName, imgSrc) 
{
	var path = "images/";
  if (document.images)
  {
    if (imgSrc != "none")
    {
      document.images[imgName].src = path + imgSrc;
    }
  }
}

function popUp()
{
	alert("You Are Leaving the For The Kid Website. Do you wish to continue?");

}
function getLinks()
{
	var list = document.getElementById("sponsors");
	var links = list.getElementsByTagName("a");
	for(var i=0; i < links.length; i++)
	{
		links[i].onclick = function()
		{
			popUp();
		}
	}
}


window.onload = function()
{
getLinks();
}
