function MailMe(name,subj,body)
{
  var gltf = 'clevelandeyebank.org'
  var q = ((subj||body)?'?':'');
  if (subj) q=q+'subject='+subj;
  if (subj&&body) q=q+'&';
  if (body) q=q+'body='+body;
  window.location = 'mai' + 'lto:' + name + '@' + gltf + q;
}
//<!--<a href="#" onClick="MailMe('pkrosschell','subject','body');">Mail Me!</a>-->

// Open new  browser window at 75% of the size of the original

  function getWindowHeight ()
  {
    if (document.body && document.body.clientHeight)
      return document.body.clientHeight;
    else
    {
      if (window.innerHeight)
        return window.innerHeight;
      else
        return 0;
    }
  }
    
  function getWindowWidth ()
  {
    if (document.body && document.body.clientWidth)
      return document.body.clientWidth;
    else
    {
      if (window.innerWidth)
        return window.innerWidth;
      else
        return 0;
    }
  }

  function WOpen (wLien,wRef)
  {
    var win = window.open(wLien,"Picture",'width=' + (getWindowWidth () * 0.75) + ',height=' + (getWindowHeight () * 0.75) + ",toolbar=1,location=1,menubar=1,status=1,resizable=1,scrollbars=yes,top=10,left=10");
    
    if (win)
      win.focus (); 
    else if (confirm('This link cannot be opened in a new window. Popup-blocking software may be preventing this. To open the link in the current window, please click OK. '))
      window.location = wLien;
	 if (wRef) wRef.winRef = win;
  }

// Link example  || <a href="javaScript: WOpen('http://www.uhhs.com/')">University Hospitals</a>
//menu you are here
function onbodyload() {
		youarehere();
		}
		
window.onload=onbodyload;
	
	
function youarehere() {
	var path = window.location.pathname;
	
			/****** Header ******/
		
			
	var topMenu=document.getElementById("topNav");
	if (topMenu) {
		var links=topMenu.getElementsByTagName("A");
		for (var i=0; i<links.length; i++) {
			var link=links[i];
			if (path.indexOf(link.href.replace(new RegExp("^http:\\/\\/" + window.location.host),''))>=0) {
				link.className='current';
			}
		}
	}
var sideMenu=document.getElementById("navSec");
	if (sideMenu) {
		var links=sideMenu.getElementsByTagName("A");
		for (var i=0; i<links.length; i++) {
			var link=links[i];
			if (path.indexOf(link.href.replace(/^http:\/\/[^\/]+/,''))>=0) {
				link.className='current';
			}
		}
	}
}
/*
CSS Browser Selector v0.3.2
Rafael Lima (http://rafael.adm.br)
http://rafael.adm.br/css_browser_selector
License: http://creativecommons.org/licenses/by/2.5/
Contributors: http://rafael.adm.br/css_browser_selector#contributors
*/
function css_browser_selector(u){var ua = u.toLowerCase(),is=function(t){return ua.indexOf(t)>-1;},g='gecko',w='webkit',s='safari',h=document.getElementsByTagName('html')[0],b=[(!(/opera|webtv/i.test(ua))&&/msie\s(\d)/.test(ua))?('ie ie'+RegExp.$1):is('firefox/2')?g+' ff2':is('firefox/3')?g+' ff3':is('gecko/')?g:/opera(\s|\/)(\d+)/.test(ua)?'opera opera'+RegExp.$2:is('konqueror')?'konqueror':is('chrome')?w+' chrome':is('applewebkit/')?w+' '+s+(/version\/(\d+)/.test(ua)?' '+s+RegExp.$1:''):is('mozilla/')?g:'',is('j2me')?'mobile':is('iphone')?'iphone':is('ipod')?'ipod':is('mac')?'mac':is('darwin')?'mac':is('webtv')?'webtv':is('win')?'win':is('freebsd')?'freebsd':(is('x11')||is('linux'))?'linux':'','js']; c = b.join(' '); h.className += ' '+c; return c;}; css_browser_selector(navigator.userAgent);