function websiteDisplayText(websiteUrl){
let formattedUrl = '';
if(websiteUrl.search('https') !== -1){
formattedUrl = websiteUrl.replace('https://', '');
} else {
formattedUrl = websiteUrl.replace('http://', '');
}
if(formattedUrl.substring(formattedUrl.length-1, formattedUrl.length) === '/'){
formattedUrl = formattedUrl.substring(0, formattedUrl.length-1);
}
return formattedUrl;
}