function ext() {


	x = document.getElementsByTagName('a');
	
	for(i in x) {
		
		if(x[i].getAttribute) {
		
			if(x[i].getAttribute('rel') == 'ext') {
				
				href = x[i].getAttribute('href');
				
				x[i].setAttribute('onclick', "window.open('"+href+"'); return false;");
				
			}
		
		}
		
	}

	// imagemaps
	
	x = document.getElementsByTagName('area');
	
	for(i in x) {
		
		if(x[i].getAttribute) {
		
			if(x[i].getAttribute('class') == 'ext') {
				
				href = x[i].getAttribute('href');
				
				x[i].setAttribute('onclick', "window.open('"+href+"'); return false;");
				
			}
		
		}
		
	}


}
