function noview() { 
if (document.getElementById) { // DOM3 = IE5, NS6 
document.getElementById('other').style.visibility = 'hidden'; 
} 
else { 
if (document.layers) { // Netscape 4 
document.other.visibility = 'hidden'; 
} 
else { // IE 4 
document.all.other.style.visibility = 'hidden'; 
} 
} 
} 
function view() { 
if (document.getElementById) { // DOM3 = IE5, NS6 
document.getElementById('other').style.visibility = 'visible'; 
} 
else { 
if (document.layers) { // Netscape 4 
document.other.visibility = 'visible'; 
} 
else { // IE 4 
document.all.other.style.visibility = 'visible'; 
} 
} 
} 

function ur(u){
	document.write("<a href=\"" + u + "\">");
}
