//Title: Random Status Bar text
//Created by: Seamus P. H. Leahy
//Created On: 2/27/2003
//url: http://www.moronicbajebus/include/jscripts/statusbar.js

//place in your HTML:
//...<head>...
//<script type="text/javascript" src="<location to file>statusbar.js"></script>...
//</head>
//<body onload="Statusbar()">...

//You can freely use this on your site if you wish..
function Statusbar()
{
	//Output texts
	//You just need to add any text you want to show in texts array.
	// Put your text in quotes ("text") and apostrophes  (,) in between text.
	var texts = new Array('每日一绝：右键鼠标见捷径',
"每日一诀：观音法门,http://godsdirectcontact.com/chinese/jian/",
"每日一变：http://godsdirectcontact.us/random.html",
"每日一诀：直接和上帝连线,http://godsdirectcontact.com/",
"每日一绝：常念上帝的名,http://godsdirectcontact.com/5Nreminder/",
"每日一绝：超越生死,http://godsdirectcontact.com/topics/birthanddeath/",
"每日一绝：爱的玫瑰常开,http://godsdirectcontact.com/topics/marriagec.htm",
"每日一绝：灵修与科学 ,http://godsdirectcontact.com/topics/spirituality_and_sciencec.htm",
"每日一诀：直接和上帝连网,http://godsdirectcontact.com/allc.html",
"每日一绝：人天宇宙图：描述人与宇宙及周物的关系,http://godsdirectcontact.com/mananduniverse.html",
"每日一绝：人生宇宙ABC,http://godsdirectcontact.com/chinese/jian/teaching/",
"每日一绝：素食ABC,http://godsdirectcontact.com/vegetarian/ch/",
"每日一绝：右键鼠标见捷径");
						  
						  
	
	
	//This displays the text in the status bar.Random number gerenated is inside []	
	window.defaultStatus=texts[Math.floor((Math.random()*texts.length))];
};
