// JavaScript Document



var r = new RegExp("/([^/]+)/[^/]*$", "g");
var country = r.exec(window.location.href)[1];

var path = "";

if ( country == "de" || country == "fr" || country == "en" )
	path = "..";
else
	path = "../..";

document.write( '' +
				'<div class="footercopyright">' +
			        '<div>' +
			            'Ce site est sponsorisé par une subvention d\'étude de <a style="color: #000; text-decoration: underline;" href="http://www.resmed.com" target="_blank">ResMed</a><br />' +
			            'L\'étude SERVE-HF est coordonnée par <a style="color: #000; text-decoration: underline;" href="http://www.ikkf.de" target="_blank">IKKF</a>, Munich, Allemagne' +
					'</div>' +
			        '<span>Optimisé par <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" />IMPRIMER' +
			    '</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" />ENVOYER A UN AMI' +
			    '</a>' +
				'' );
