// filename: news_applet.js
// design by: www.ernestconill.com
// date: 16 January 2009


/////////////////////////////////////////////////////////////////////
// This function build the window for the blackboard of the main page
/////////////////////////////////////////////////////////////////////

var news_links = Array (
 ["static.php?left=red&amp;content=upcoming/upcoming&amp;title=upcoming%20events"],
 ["static.php?left=red&content=upcoming/sarnath&title=sarnath%20dharma%20gathering"],
 ["static.php?left=purple&amp;content=retreats/other_programs/ongoing_teachings/dharmaloca&amp;title=dharmaloca"],
 ["static.php?left=purple&amp;content=donations/donations_scholarship&amp;title=donations%20scholarships"],
 ["static.php?left=blue&amp;content_php=opendharma/postcards&amp;title=Open%20Dharma%20around%20the%20world"],
 ["static.php?left=blue&amp;content=opendharma/list_past_retreats&amp;title=list%20of%20past%20retreats"],
 ["static.php?left=purple&amp;content_php=retreats/photo_show&amp;title=retreat%20photo%20show"],
 ["static.php?left=purple&amp;content=retreats/what_is_retreat&amp;title=what%20is%20a%20retreat?"],
 ["static.php?left=purple&amp;content=retreats/what_is_retreat/meditation&amp;title=meditation"],
 ["static.php?left=purple&amp;content=retreats/what_is_retreat/meditative_singing&amp;title=meditative%20singing"],
 ["static.php?left=purple&amp;content=retreats/what_is_retreat/continuity&amp;title=continuity%20between%20retreats"],
 ["static.php?left=purple&amp;content=retreats/deeprestretreat&amp;title=deep%20rest%20retreat#lyingdown"],
 ["static.php?left=purple&amp;content=retreats/other_programs&amp;title=other%20programs"],
 ["static.php?left=purple&amp;content=teachings/interviews/pregnant_woman&amp;title=call%20me%20a%20pregnant%20woman"],
 ["static.php?left=purple&amp;content=teachings/interviews/home_stretch&amp;title=home%20stretch"],
 ["static.php?left=blue&amp;content=teachings/instructions/basic_instructions&amp;title=basic%20instructions#basic"],
 ["static.php?left=purple&amp;content=teachings/download/talks_download&amp;title=talks%20and%20meditations%20to%20download"], //num 16 dharma talks
 ["static.php?left=purple&amp;content=teachings/sanskrit_glossary&amp;title=sanskrit%20glossary"],
 ["static.php?left=purple&amp;content=participants/participants&amp;title=participants"],
 ["static.php?left=creative&amp;content=participants/creative_spirit&amp;title=creative%20spirit"],  //num 19 creative spirit
 ["static.php?left=purple&amp;content=participants/sangha_interviews&amp;title=sangha%20interviews"],
 ["static.php?left=purple&amp;content=participants/questions_to_ask&amp;title=questions%20to%20ask"],
 ["static.php?left=purple&amp;content_php=participants/friends_of_od&amp;title=friends%20of%20Open%20Dharma"],
 ["static.php?left=red&amp;content_php=participants/photos&amp;title=photos"],
 ["static.php?left=red&amp;content_php=contact/contact_us&amp;title=contact%20us"],
 ["javascript:document.search.submit()"],
 ["static.php?left=red&content=search/site_map&title=odweb%20site%20map"],
 ["index.php"],
 ["static.php?left=purple&amp;content=participants/sangha_interviews&amp;title=sangha%20interviews#video_2"],
 ["static.php?left=purple&amp;content=donations/donations_selectDonationType&amp;title=donations"], //num 29 select donations type
 ["static.php?left=purple&amp;content=donations/donations_OpenCentre&amp;title=donations%20Open%20Centre"],  //num 30 donations opencentre
 ["static.php?left=purple&amp;content=donations/donations_dharmaloca&amp;title=donations%20dharmaloca"]	//num 31 donations dharmaloca

);
var news = Array (
					["","<b>What's new on Open Dharma website?</b><br/><br/>",""],
					["NEW - ","Video 'an introduction to Open Dharma'",news_links[27]],
					["NEW - ","Donations for Dharmaloca",news_links[31]],
					["NEW PAGE - ","Donations for Open Centre",news_links[30]],
					["RENEWED - ","Donations section, now more easy and clear",news_links[29]],
					["ADDED NEW - ", "on Sangha Creative: <br />Veronica - r e a c h (research and action for change)", news_links[19]],
				 	["ADDED NEW - ","Talks & meditations to download<br />* 2009 - North Carolina<br />* 2010 - Tiruvannamalai",news_links[16]],
				//	["ADDED MORE - ","Friends of Open Dharma",news_links[22]],
					["","<br/>",""],
					["","<hr/>",""],
					["UPDATED (July '25) - ","Upcoming events",news_links[0]]
				  );
	
function do_html_text(NEWS)
{
	return '<p>'+NEWS[0]+
		   '<a href="'+NEWS[2]+'">'
		   +NEWS[1]+'</a>'+
		   '</p>';	 		
}

	// style="border-bottom:#D8C9BE thin solid;"

function news_widget(news)
{ 
	
	var Len=news.length;
	var obj = document.getElementById("news_on_website");
	var html_text = '<div id="child_blackboard"><div id="blackboard_tab" >';
		for(i=0; i<Len; i++) html_text += do_html_text(news[i]);
		html_text += '</div></div>';
		html_text += '<img src="' + images_path + 'comon_icons/site_news_up_tab.jpg"' +
		'onclick="news_empty();"' +
		'alt="website news"' +
		'name="site_news"'+
		'width="350" height="25" />';

	obj.innerHTML = html_text;
	rolloverInit();
}

function news_empty()
{
	var html_text = '<img src="' + images_path + 'comon_icons/site_news_down_tab.jpg"'+
		'class="width_auto"'+
		'onclick="news_widget(news);"'+
		'alt="what\'s new in opendharma web site"' +
		'name="site_news"'+
		'width="107" height="20" />';
	var obj = document.getElementById("news_on_website");
	obj.innerHTML = html_text;
	rolloverInit();
}
				