function setEmailLink (obj){
	var linkObject=obj;
	location.href = 'mailto:' + linkObject.getAttribute('sfReceiverName') + '@' + linkObject.getAttribute('sfReceiverHost') + linkObject.getAttribute('sfParams');
}

function writeAddress(gscReceiverName,gscReceiverHost){
	document.write(gscReceiverName + '@' + gscReceiverHost);
}

function gotoHRef(linkHint){
	gotoLink = document.getElementById(linkHint).href;
	window.location = gotoLink;
}
