if(window != top){
	top.location.href=location.href;
}

function favorites(){
	var chr='CTRL-D';
	var agt=navigator.userAgent.toLowerCase();
	if(agt.indexOf("opera")!= -1)
		chr = 'CTRL-T';
	if (document.all)
		window.external.addfavorite('http://razerzone.co.uk','RazerZone');
	else
		alert('This feature is for Microsoft IE only at this time\nPress '+chr+' to bookmark');
	return false;
}
function DoIt(){
  window.status = '';
  return true;
}
function initialize(){
	var x = document.getElementsByTagName('a');
	for (var i=0;i<x.length;i++){
		if (x[i].getAttribute('rel') == 'partner'){
			x[i].onmouseover = DoIt;
			x[i].onfocus = DoIt;
			x[i].onmouseout = DoIt;
			x[i].target="_blank";
		}else if (x[i].getAttribute('rel') == 'external'){
			x[i].target="_blank";
		}else if (x[i].getAttribute('rel') == 'tag'){
			x[i].target="_blank";
		}else if (x[i].getAttribute('rel') == 'favorite'){
			x[i].onclick = function (){return favorites()}
		}else {
		}
	}
}
window.onload = initialize;

