
//----------- no right click -------------------------------------------------------------------


var message="Welcome to Reweaving Harmony Website";

function click(e) {
	if (document.all) {
		if (event.button == 2) {
			alert(message);
			return false;
		}
	}
	if (document.layers) {
		if (e.which == 3) {
			alert(message);
			return false;
		}
	}
}
if (document.layers) {
	document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
//----------------------------------------------------------------------------------------------
statusbarmessage     = "The Song of the Universe is a love song that invites us to dance in a sacred space overflowing with light.^" +
						"An open heart and mind restores the memory of flight, erasing the fear of heights necessary to soar into the depths of love.^" +
						"\“Someday, after mastering the winds, the waves, the tides and gravity, we shall harness for God the energies of love, and then, for the second time in the history of the world, man will discover fire.\” Pierre Teihard de Chardin^" +
						"To consciously step into love we must courageously enter into a realm that is exceedingly beyond what most have ever defined as ‘normal’.^" +
						"When love’s harmony is restored we will stop wearing down our worlds with our worn out survival behaviors.^" +
						"Walking a path of conscious loving is more than possible; it is expedient for our relationships, the global family and Gaia to thrive.^" + 
						"Rainbows present us with timeless moments of true magic, renewing hope as they inspire visions and reawaken dreams.^" + 				
						"Beauty inspires the mind and lifts despair,easing distress so to reawaken a Love beyond imagination.^"


scrollSpeed = 25
lineDelay   = 2500

// Do not change the text below //
txt         = ""
function scrollText(pos) {
if (statusbarmessage.charAt(pos) != '^') {
txt    = txt + statusbarmessage.charAt(pos)
status = txt
pauze  = scrollSpeed
}
else {
pauze = lineDelay
txt   = ""
if (pos == statusbarmessage.length-1) pos = -1
}
pos++
setTimeout("scrollText('"+pos+"')",pauze)
}
// Unhide -->
scrollText(0)

//----------------------------------------------------------------------------------------------

