

function relTags() {



	if (document.getElementsByTagName) {

	

		var anchors = document.getElementsByTagName( "a" );

		

		for (var loop = 0; loop < anchors.length; loop++) {

			

			var anchor = anchors[loop];

			if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "external") {

				anchor.target = "_blank";

			}

		}

	}

}



window.onload = function() {



	relTags();



}





var ie = (document.all) ? true : false;

function onfocuscheckentry(which, cont) {

	if(ie) which.style.backgroundColor = "#FFFFFF";

	if(which.value == cont) {

		which.value = "";

	}

}



function onblurcheckentry(which, cont) {

	if(ie) which.style.backgroundColor = "#FDFBD4";

	if(which.value == '') {

		which.value = cont;

	}

}
