// JavaScript Document

function showresources(){

var pathToRoot = getPathToRoot();



if ( (typeof(rsrcArr)=='undefined' || rsrcArr.length <= 0) ) { return; } 

var retStr = '<table name="perspectives_table" width="200" border="0" cellspacing="2" cellpadding="0" align="right">';

retStr = '';



// do the Resources

retStr="";

if (rsrcArr.length > 0) {

	retStr += '<br><img src="/common/images/images_nav/tab_relatelinks.gif" width="165" height="19"><br><br>';

	// now do the Additional Resources

	retStr += '<div class="relatedlinks">';

	retStr += '<ul>';

	for (var i=0;i<rsrcArr.length;i++){

		//rsrcArr[i].url = rsrcArr[i].url.toLowerCase();

		//var thisPath = pathToRoot;

		//if ( (rsrcArr[i].url.indexOf("www.") >= 0 ) || (rsrcArr[i].url.indexOf("http") >= 0 ) ) thisPath = "";

		//if ( rsrcArr[i].url.indexOf("www") == 0 ) rsrcArr[i].url = "http://" + rsrcArr[i].url;

		retStr += '<li><font color="#006699">' +

		'<a href="' + rsrcArr[i].url + '">' + rsrcArr[i].tag + '</a></font></li>';

	}

	retStr += '</ul>';

	retStr += '</div>';

	

}

document.write(retStr); 

}

