// JavaScript Document

var r = new RegExp("/([^/]+)/[^/]*$", "g");
var country = r.exec(window.location.href)[1];

if ( country == "de" || country == "fr" || country == "en" )
	path = "..";
else
	path = "../..";

document.write( '' +
				'<div class="footercopyright">' +
			        '<div>' +
			            'Diese Webseite wird durch einen Bildungszuschuss von <a style="color: #000; text-decoration: underline;" href="http://www.resmed.com" target="_blank">ResMed</a> gesponsert. <br>' +
			            'Die SERVE-HF-Studie wird von <a style="color: #000; text-decoration: underline;" href="http://www.ikkf.de" target="_blank">IKKF</a>, München koordiniert' +
					'</div>' +
			        '<span>Powered by <u>LimeCMS</u> by <u>Innonventure Net Solutions</u></span>' +
			    '</div>' +
			    '<a href="javascript: print();" class="footerlink">' +
			    	'<img src="' + path + '/img/print.gif" border="0" style="margin: 2px;" align="absmiddle" />DRUCKEN' +
			    '</a>' +
			    '<a href="mailto:?subject=SERVE-HF Study (www.servehf.com)" class="footerlink">' +
			    	'<img src="' + path + '/img/mailto.gif" border="0" style="margin: 2px;" align="absmiddle" />WEBSEITE WEITEREMPFEHLEN' +
			    '</a>' +
				'' );
