/* This JavaScript (Random Quotes) developed by Scott Clark
The Source is available at http://www.clarksco.com/blog/
Copyright 2005 Clark Consulting */

var num_of_quotes = 16;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
body="We are beginning a new order. We want brave, noble, large-minded courageous souls....";
}

if (quotes==1) {
body="It is most important...to inspire the young with a great love of peace.";
}

if (quotes==2) {
body="How utterly fearless I am of consequences when I have a duty to do.";
}

if (quotes==3) {
body="The very name Sisters of Peace will, it is hoped, even of itself, inspire the desire of peace and a love for it.";
}

if (quotes==4) {
body="Let the place and function of women be once clearly understood and the ground of much prejudice and misapprehension is removed.";
}

if (quotes==5) {
body="I think our dear angels often visit us, and we are not aware of it.";
}

if (quotes==6) {
body="What a happiness it is, even in this world, when sisters walk together in full union of heart and love, sharing their joys and their sorrows!";
}

if (quotes==7) {
body="Act together in everything and you will be holy and happy children of peace.";
}

if (quotes==8) {
body="What kind of liberty of conscience is it which tolerates, or rather encourages, oppression in one place and cries with wild shrieks of rage against what is a simple matter of duty?";
}

if (quotes==9) {
body="Certainly those who are clamouring so loudly for what they call justice should be willing to allow a share to others.";
}

if (quotes==10) {
body="It is certainly extraordinary --the inconsistencies and absurdities to which people are driven...from prejudice or ignorance.";
}

if (quotes==11) {
body="When I was in charge of the order, I tried to do all I could for those who, like ourselves, were trying to do their best in their own way, for God and the poor.";
}

if (quotes==12) {
body="Each shall endeavour to contribute to the happiness of all by affectionate and thoughtful charity.";
}

if (quotes==13) {
body="We may never meet in this world, but I trust we shall spend a long and glorious eternity together.";
}

if (quotes==14) {
body="I felt then [July 2, 1859] in some strange way, as I have often felt since, that I had no choice; that I was led or moved or influenced by some exterior power.";
}

if (quotes==15) {
body="Politics concern each individual in a state.";
}


document.write('<div align=left>');
document.write(''+ body +'');
document.write('</div>');

