function load() {
	var url = document.URL;
	
	var border = 'solid thin black';
	var decoration = 'underline';
	
	var count = 0;
	var subtarget;
	var target;
	
	var urlsplit = url.split('st=');

	if (urlsplit != url) {
		subtarget = urlsplit[1];
		target = urlsplit[0].split('t=');
		target = target[1].substr(0,1);
	}
	else {
		target = 0;
	}
	
	while (document.getElementsByTagName('a')[count]) {
		if(document.getElementsByTagName('a')[count].href == url) {
			if (subtarget == undefined) {
				document.getElementsByTagName('a')[count].childNodes[0].style.borderBottom = border;
			}
			else {
				document.getElementsByTagName('a')[count].style.textDecoration = decoration;
			}
		}

		count = count + 1;
	}
}
