// The following detects whether the user is on a Macintosh and loads the appropriate stylesheet

if (navigator.userAgent.indexOf("Mac")!=-1) {
document.write('<link rel=stylesheet type="text/css" href="spirithillfarm_mac.css">');
}
else {
document.write('<link rel=stylesheet type="text/css" href="spirithillfarm_win.css">');
}

//The following is the generic daughter window launcher 

function launchWindow(URLtoOpen, windowName, windowFeatures)
      { newWindow=window.open(URLtoOpen, windowName,
      windowFeatures); }
	  
//The following is the Email to a friend code  
	  
	var address = window.location.href;
	function EmailWin() {
	  email=window.open(
	    ('http://www.medtronic.com/internet/www/SendToColleague.jsp?url=' + address),
	    'email',
	    'resizable=yes,scrollbars=yes,width=340,height=540,top=50,left=50'
	  )
	}

