function NewOption() {
	if (document.layers) {
		window.document['hiddenrow'].visibility = 'show';
	}
	else if (document.all) {
		document.all['hiddenrow'].style.visibility = 'visible';
	}
	else if (document.getElementById) {
		document.getElementById('hiddenrow').style.visibility='visible';
	}
}
function initialize () {
	var x = document.getElementsByTagName('a');
	for (var i=0;i<x.length;i++){
		if (x[i].getAttribute('rel') == 'external'){
			x[i].target="_blank";
		}else if (x[i].getAttribute('rel') == 'partner'){
			x[i].onmouseover = DoIt;
			x[i].onfocus = DoIt;
			x[i].onmouseout = DoIt;
			x[i].target="_blank";
		}else
			x[i].target="_top";
	}
}
function DoIt(){
  window.status = '';
  return true;
}
window.onload = initialize;

