function getHTML()
	{
		var url = '/SSI/disclaimer.html';
		var myAjax = new Ajax.Updater( {success: 'disclaimer_div'}, url, { method: 'get', onFailure: reportError });
	}

function reportError(request)
	{
		alert('Sorry. There was an error.');
	}
	
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";
			}
		}
	}
}

function MM_openBrWindow(theURL,winName,features) 
	{ //v2.0
	window.open(theURL,winName,features);
	}


window.onload = function ()
	{
	relTags();
	getHTML();
	}