
function hide_status(){
		var anchor = document.getElementsByTagName('a');
		var anchorLen = anchor.length;
		var func = 'hide_exec(); return true;';
		for(var i=0;i<anchorLen;i++){
				if (document.all){
						anchor[i].setAttribute('onmouseover', new Function(func));
						anchor[i].setAttribute('onfocus', new Function(func));
				} else {
						anchor[i].setAttribute('onmouseover', func);
						anchor[i].setAttribute('onfocus', func);
				}
		}
}

function hide_exec(){
		window.status = '';
}

