// 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"],
 ["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"],
 ["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"]

);
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 - ","Ongoing welcome to Dharmaloca",news_links[2]],
					["NEW - ","Dharmaloca photo show",news_links[2]],
					["NEW - ","Site map",news_links[26]],
					["RENEWED - ","Creative spirit <br />* submenu 'Ecology'",news_links[19]],
					["ADDED NEW - ","Talks & meditations to download<br />* 2008 & 2009",news_links[16]],
					["ADDED NEW - ","Sangha interviews <br />* Dana Dharma Mama interview",news_links[28]],
				//	["ADDED MORE - ","Friends of Open Dharma",news_links[22]],
					["","<br/>",""],
					["UPDATED (March '02) - ","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"'+
		'onMouseOut="MM_swapImgRestore()"'+
		'onMouseOver="MM_swapImage(\'site_news\',\'\',\'' + images_path + '/comon_icons/site_news_up_tab2.jpg\',1)" />';

	obj.innerHTML = html_text;
	
}

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"'+
		'onMouseOut="MM_swapImgRestore()"'+
		'onMouseOver="MM_swapImage(\'site_news\',\'\',\'' + images_path + 'comon_icons/site_news_down_tab2.jpg\',1)" />';
	var obj = document.getElementById("news_on_website");
	obj.innerHTML = html_text;
}
				