<!--
var win = null;
function NewWindow(mypage,myname,w,h,scroll){
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
	win = window.open(mypage,myname,settings)
}

function showAlert()
{
	alert ("This section is yet to be implemented \n \n Please see the following sections. \n\n 1. ABOUT SAI --> Baba's Teachings \n\n 2. ALBUM --> Dwarkamai \n\n 3. TOWARDS LIGHT (complete except for Temples) \n\n PLEASE SEND YOUR FEEDBACK");
	return;

}

function bookmark(url, description)
{
	//***---This text will be shown to the visitor if it has Netscape.
	netscape="First push OK and then hit CTRL+D to add a bookmark to this site."

	if (navigator.appName=='Microsoft Internet Explorer')
	{
		window.external.AddFavorite(url, description);
	}
	else if (navigator.appName=='Netscape')
	{
		alert(netscape);
	}
}


function showThanksMessage()
{
	var ThankVisitor = "Dear Visitor,\n\n We sincerely thank you for your initiative to introduce this web site to others.\n\nBy doing this you are becoming part of our efforts to bring Shri Sai Baba\'s message closer to the world.\n\n";
	ThankVisitor = ThankVisitor + "Shri Sai said \"Listening to my stories, narrating them to others in Kirtan, contemplating on them will propagate love and devotion for me, which will destroy ignorance, instantly (Shri Sai Satcharira, Chapter 2 Verse 82)\""
	alert (ThankVisitor);
}

//-->
