function website1() {
	if (!document.getElementsByTagName) return;
	var anchors = document.getElementsByTagName("a");
	for (var i = 0; i < anchors.length; i++) {
		var anchor = anchors[i];
		if (anchor.getAttribute("href") &&
		    anchor.getAttribute("rel") == "website1") {
			anchor.href = "javascript:location.href=('%68%74%74%70%3a%2f%2f%77%77%77%2e%65%61%72%74%68%63%61%72%65%2e%63%6f%6d')";

		}
	}
}

