
function printerFriendlyLink() {
	var sPageUrl =document.URL;
	//if it doenst end in index.html then stick it on the end
	if (sPageUrl.indexOf('/index.html') != -1){
	//document.write("its got one!");
	}
	else if(sPageUrl.indexOf('.html') != -1){
	}
	else if(sPageUrl.indexOf('.htm') != -1){
	}
	else if(sPageUrl.indexOf('index.html') != -1){
	}
	else{
	sPageUrl=sPageUrl +"index.html";
	}

	if(sPageUrl.indexOf('?') != -1){
	sPageUrl = sPageUrl.split('?');
	sPageUrl = sPageUrl[0] + "index.html";
	}

	var sPrinterFriendlyUrl = "http://sardinia.terminalfour.com/hebejsp/hse/printerfriendly.jsp?Url=" + sPageUrl;		
	window.open(sPrinterFriendlyUrl, "printerFriendly", "scrollbars=yes, location=no, menubar=yes, status=yes, toolbar=no");
}

function outputPrintText() {
	var sPageUrl = document.URL;

	if(sPageUrl.indexOf("/ie/") != -1) {
		return "<a href='' onClick='printerFriendlyLink()'><span class='print'><img src=/css//%22/en/images/FiletoUpload,2375,en.gif/%22 border=0> Priontáil</span></a>";
	} else {
		return "<a href='' onClick='printerFriendlyLink()'><span class='print'><img src=/css//%22/en/images/FiletoUpload,2375,en.gif/%22 border=0> Print Version</span></a>";
	}	
}