function website2() {
	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") == "website2") {
			anchor.href = "javascript:a=window.open('%68%74%74%70%3a%2f%2f%77%77%77%2e%65%61%72%74%68%73%65%72%76%65%2e%63%6f%6d'); a.focus();";	//open in new window

		}
	}
}

