<!--
//var ranImage = new Image(120,20);
var ranText = "";
var ranSrc = "";
//var ranURL = "";

/* Quotes on entry page use the ranText, ranSrc, lstQuotes, lstSrc, selQuote and showQuotes().
*/
var lstQuotes = new Array(15);
var lstSrc = new Array(15);

lstQuotes[0]="A permanent peace cannot be prepared by threats but only by the honest attempt to create mutual trust. "+
              "However strong national armaments may be, they do not create military security for any nation nor do "+
			  "they guarantee the maintenance of peace.";
lstSrc[0] = "- Albert Einstein";
lstQuotes[1]="I think that people want peace so much that one of these days government had better get out of the way "+
              "and let them have it.";
lstSrc[1] = " - Dwight D. Eisenhower";
lstQuotes[2]="We are not here to curse the darkness, but to light a candle that can guide us through that darkness "+
			  "to a safe and sane future.";
lstSrc[2] = " - John Fitzgerald Kennedy";
lstQuotes[3]="If everyone sweeps before his own front door, then the street is clean.";
lstSrc[3] = " - Johann Wolfgang Von Goethe";
lstQuotes[4]="Before I built a wall I&#8217;d ask to know<br>What I was walling in or walling out.";
lstSrc[4] = " - Robert Frost";
lstQuotes[5]="My intention is to make my entire life a rejection of, a protest against the crimes and injustices  "+
				"of political tyranny which threaten to destroy the whole race of humankind and the world with it.";
lstSrc[5] = " - Thomas Merton";
lstQuotes[6]="Until he extends his circle of compassion to include all living things, man will not himself find peace."
lstSrc[6] = " - Albert Schweitzer";
lstQuotes[7]="Reconciliation should be accompanied by justice, otherwise it will not last. While we all hope for peace "+
			  "it shouldn&#8217;t be peace at any cost but peace based on principle, on justice."
lstSrc[7] = " - Corazon Aquino";
lstQuotes[8]="One of the most basic principles for making and keeping peace within and between nations... "+
				"is that in political, military, moral, and spiritual confrontations, there should be an honest "+
				"attempt at the reconciliation of differences before resorting to combat."
lstSrc[8] = " - Jimmy Carter";
lstQuotes[9]="Wars begin in the minds of man, and in those minds, love and compassion would have built the defenses of peace."
lstSrc[9] = " - U Thant";
lstQuotes[10]="If everyone demanded peace instead of another television set, then there&#8217;d be peace."
lstSrc[10] = " - John Lennon";
lstQuotes[11]="When the power of love overcomes the love of power the world will finally know peace. "
lstSrc[11] = " - Jimi Hendrix";
lstQuotes[12]="Peace is not God&#8217;s gift to His creatures. It is our gift - to each other."
lstSrc[12] = " - Elie Wiesel";
lstQuotes[13]="You can&#8217;t separate peace from freedom because no one can be at peace unless he has his freedom."
lstSrc[13] = " - Malcolm X";
lstQuotes[14]="If you want to make peace, you don&#8217;t talk to your friends. You talk to your enemies."
lstSrc[14] = " - Moshe Dayan";
lstQuotes[15]="War is not the answer to conflict in the 21st century."
lstSrc[15] = " - Amy Goodman";

var selQuote = Math.round(15.5*Math.random())
//ranImage.src = (' hints/graphics/hdHint' + (selected+1) + '.gif');
//ranImage.src = lstpics[selected]
ranText = lstQuotes[selQuote];
ranSrc = lstSrc[selQuote];
//alert(ranText);
//alert(ranSrc);

//ranURL = ('hints/hint' + (selected+1) + '.html');

//show the headline for the tip
/*
function showHintHD(){
	var newContent = "<img src = " + ranImage.src + " height=20 width = 120>";
	document.write(newContent);
}
*/


//Quotes for entry page
function showQuote() {
	var newQuote = "<table width='360' border='0' align='center' cellpadding='0' cellspacing='0'>"+
  					"<tr>"+
					"<td>"+
					"<font color='#ffffff' face='Verdana, Arial, Helvetica, sans-serif'><b>" + 
					ranText + 
					"</b><br><img src='graphics/spacer.gif' width=3 height=4></font></td></tr>"+
					"<tr align='right'><td><font color='#ffffff' face='Verdana, Arial, Helvetica, sans-serif'>"+
					ranSrc +
					"&nbsp;&nbsp;</font></td></tr></table>";
	document.write(newQuote);
}



function checkVersion() {
//alert(navigator.platform)
strReport = ""
strReport += (navigator.platform + " ")
strReport += (navigator.appName + " ")
strReport += (navigator.appVersion)
return(strReport)
}

// -->

function JRA_openBrWindow() {
  window.open(ranURL,"","scrollbars=yes,resizable=yes,width=475,height=400");
}
//-->