Try this script:
Code:
// JavaScript Document
/* Original Script ©2009 John Davenport Scheuer
as first seen in http://www.dynamicdrive.com/forums/
username: jscheuer1 - This Notice Must Remain for Legal Use
Modified By username:Master_script_maker of http://www.dynamicdrive.com/forums/
*/
(function(t) {
document.write('<div id="js_footer"><\/div>');
var links = [
[ // declare href: , text: , title: for each centered link -
{href: 'privacy.html', text: 'Privacy Policy', title: ''},
{href: 'terms.html', text: 'Terms of use', title: ''},
{href: 'disclaimer.html', text: 'Disclaimer', title: ''},
{href: 'http://validator.w3.org/check/referer', text: 'XHTML', title: 'This page validates as XHTML 1.0 Transitional'},
{href: 'http://jigsaw.w3.org/css-validator/check/referer', text: 'CSS', title: 'This page validates as CSS'}
],
[
{href: 'http://www.robinsden.110mb.com', text: 'Designed by Robin\'s Den', title: 'This site was designed by Robin\'s Den'}
]
];
var a = [],
y = new Date().getFullYear(),
p = [document.createElement("span")];
p[0].appendChild(document.createTextNode(t.replace(/_y_/, y)));
for(var i=0;i<links.length;++i) {
a[i] = [];
for(var n=0;n<links[i].length;++n) {
a[i][n]=document.createElement("a");
a[i][n].href = links[i][n].href;
a[i][n].appendChild(document.createTextNode(links[i][n].text));
a[i][n].title = links[i][n].title;
p[i]=p[i]||p[i-1].cloneNode(0);
p[i].id = "js_footer_s"+(i+1);
p[i].appendChild(a[i][n]);
if(n<links[i].length-1) {
p[i].appendChild(document.createTextNode("|"));
}
}
document.getElementById("js_footer").appendChild(p[i]);
}
})("Copyright \xa9 _y_, Marie-Joe Restaurant - ");
Bookmarks