function guidancetext(method) {

var output;

if (method == 'goal') {


output='<b>GOAL</b> <br />';
output+='<br />What it is: A statement, often general and qualitative, describing what you want to achieve (e.g. a future condition, change or improvement). The goal is usually stated in one sentence. <br /><br />';
output+='Sample goals: <br />';
output+='a. Increase community activism among youth in the rural regions of Georgia<br />';
output+='b. Improve the health status of children in Kyrgyzstan<br />';
output+='c. Increase meaningful civic participation among high school students in Moldova<br />';



}
if (method == 'objective') {

output='<b>OBJECTIVE</b> <br />';
output+='What it is: A specific, measurable achievement that signifies success in contributing to achievement of the goal. A goal usually has two or more objectives. For each objective, identify who or what would need to change, by how much, and when. <br /><br />';
output+='Goal: Increase community activism among youth in the rural regions of Georgia<br />';
output+='Sample objectives: <br />';
output+='a.	Increase the number of volunteers aged 14-22 in Kutaisi by 50% in 18 months.<br />';
output+='b.	Double the number of community action projects among high school students in Kutaisi within the first year.<br />';

}
if (method == 'outcome' || method == 'outcome-guide') {

output='<b>OUTCOME</b> <br />';
output+='<br />';
output+='What it is: the likely or achieved short-term and medium-term effects of the program\'s outputs. Outcomes are the changes you expect to occur as the result of your program.<br />';
output+='<br />';
output+='Sample outcomes:<br />';
output+='<br />';
output+='a.	Targeted grassroots organizations design, implement and evaluate projects that provide longer-term impacts for their communities. <br />';
output+='b.	More active and effective CSOs performing a watchdog function over public resources and institutions in six communities. <br />';
output+='c.	The capacities of youth NGOs and public authorities to engage youth in local and national governance in southern Kyrgyzstan are strengthened.<br />';
output+='<br />';

}

if (method == 'output' || method == 'output-guide') {

output='<b>OUTPUTS</b> <br />';
output+='<br />';
output+='What it is: The products or services that result from program activities.<br />';
output+='<br />';
output+='Sample outputs:<br />';
output+='a.	Bilingual web-based community launched and maintained<br />';
output+='b.	Final networking conference convened<br />';
output+='c.	Two training seminars for journalists in basic ethics, news gathering and news writing <br />';
 
}

if (method == 'datasource') {

output='<b>DATA SOURCE</b><br />';
output+='<br />';
output+='What it is: The source of information that will be used to verify the outputs and outcomes of the program. <br />';
output+='<br />';
output+='Sample data sources<br />';
output+='<br />';
output+='a.	Website analytics<br />';
output+='b.	Attendee list, media materials<br />';
output+='c.	Participant list, exchange feedback form<br />';
output+='d.	Final/summative evaluation<br />';
output+='e.	Media monitoring reports<br />';
output+='f.	Survey among beneficiaries<br />';

}

if (method == 'timeframe') {

output='<b>TIMEFRAME</b><br />';
output+='<br />';
output+='What it is: period of time within which data about program outputs or outcomes is scheduled to be collected. Timeframe is usually given in quarters, months or weeks. <br />';
output+='<br />';
output+='Sample timeframe:<br />';
output+='<br />';
output+='a.	Quarter 1.2-1.3 (From second quarter through third quarter of the first year)<br />';
output+='b.	Month 2<br />';
output+='c.	Week 5-7<br />';

}

if (method == 'baseline') {

output='<b>INDICATOR LEVEL - BASELINE</b> <br />';
output+='<br />';
output+='What it is: Indicator level prior to a development intervention, against which progress can be assessed or comparisons made. This indicator often comes from a baseline study.<br />';
output+=' <br />';

}

if (method == 'outcome-performance') {
output='<b>OUTCOME PERFORMANCE INDICATOR</b><br />';
output+='<br />';
output+='What it is: A factor or variable that provides a simple and reliable means to measure achievement (outputs) and reflect the changes (outcomes) connected to a development intervention. Individual outputs and outcomes can be measured by more than one indicator.<br />';
output+=' <br />';
output+='<br />';
output+='Sample outcome performance indicators:<br />';
output+='a.	Number of  NGOs that have broadened their portfolio of social development interventions<br />';
output+='b.	Number of high-quality, high-profile monitoring reports published by watchdog groups<br />';
output+='c.	Percentage of youth who report to have participated in local or national governance through community projects, volunteering, etc. with the help from youth NGOs or public authorities<br />';
}

if (method == 'output-performance') {

output='<b>PERFORMANCE INDICATOR</b><br />';
output+='<br />';
output+='What it is: A factor or variable that provides a simple and reliable means to measure achievement (outputs) and reflect the changes (outcomes) connected to a development intervention. Individual outputs and outcomes can be measured by more than one indicator.<br />';
output+='<br />';
output+='Sample output indicators: <br />';
output+='a.	Number of website visits, number of users<br />';
output+='b.	Number of community representatives disaggregated by country and profile; number of media pieces highlighting the event disaggregated by type<br />';
output+='c.	Number of journalists trained; level of satisfaction with the training<br />';
output+='<br />';

}
if (method == 'outcome-target') {

output='<b>INDICATOR LEVEL - TARGET</b><br />';
output+='<br />';
output+='What it is: Indicator level expected to be achieved after the development intervention. This indicator demonstrates the outcome of the program. <br />';
output+='<br />';
output+='Sample target indicators:<br />';
output+='a.	9 (9 local NGOs have undertaken social development projects as a result of the program)<br />';
output+='b.	5 (high-quality monitoring reports are published by watchdog groups)<br />';
output+='c.	87% (87% of respondents have reported to have participated in local or national governance)<br />';


}

if (method == 'output-target') {

output='<b>INDICATOR LEVEL - TARGET</b><br />';
output+='<br />';
output+='What it is: Indicator level expected to be achieved after the development intervention.<br />';
output+='<br />';
output+='Sample target:<br />';
output+='a.	5,000 website visits by 500 users/month<br />';
output+='b.	10 local govŐt reps and educators; 15 media pieces, 6 TV, 9 print<br />';
output+='c.	49 journalists trained, 25 women and 24 men; 70% Highly Satisfied or Satisfied<br />';

}
return output;
}

