// email to a friend
function EmailLink(){
window.location = "mailto:"+"?subject=GlobeOp" + "&body=" + "I thought this link might interest you:  " + document.title + "  " + location.href;
}

// request info 
function ReqInfo(){
window.location = "mailto:"+"?subject=GlobeOp subject line" + "&body=" + "Text here";
}

// FAQs 
function toggleDiv(_id){_oDivStyle=document.getElementById(_id).style;(_oDivStyle.display=='block')?_oDivStyle.display='none':_oDivStyle.display='block';} 


// drop down function
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  if (targ == 'blank') { 
  	win = window.open(selObj.options[selObj.selectedIndex].value, 'newwindow')
  } else {
	eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
	if (restore) selObj.selectedIndex=0;
  }
}
