// JavaScript Document
// JavaScript Document

// fuction to show/hide Partners
function showDiv(myDiv) {
  if (document.getElementById(myDiv).style.display == '') {
	document.getElementById(myDiv).style.display = 'none';
  }
  else {
	document.getElementById(myDiv).style.display = '';
  }
}

/*
//function to expand/shrink selected div
function toggle(myObj){
  if (myObj.style.display == "") {
    myObj.style.display = "none";
  }
  else {
    myObj.style.display = "";
  }
}
function linkstyle(myObj){
  myObj.style.cursor="hand";
  myObj.style.textDecorationUnderline=true;
  myObj.style.color='red';
}
function normalstyle(myObj){
  myObj.style.cursor="";
  myObj.style.textDecorationUnderline=true;
  myObj.style.color='#0000FF';
}
*/

//open links in a new browser window
function externalLinks() {
  if (!document.getElementsByTagName && document.getElementById) return;
  var anchors = document.getElementsByTagName("a");
  for (var i=0; i<anchors.length; i++) {
   var anchor = anchors[i];
   if (anchor.getAttribute("href") &&
       anchor.getAttribute("rel") == "external")
       anchor.target = "_blank";
  }
}
window.onload = externalLinks;
