// JavaScript Document
// common functions



// Show Maori Translations
function showMaori(whichBox)
					{
						var whichBox;
							if (whichBox == 1)
											{
											//alert('Hello this is box one.');
											document.getElementById('box1').style.display = 'block';
											}
											
							else if(whichBox == 2)
									{
										//alert('Hello this is box two.');
										document.getElementById('box2').style.display = 'block';
									}
									
							else if(whichBox == 3)
									{
									 //alert('Hello this is box 3...');
									 document.getElementById('box3').style.display = 'block';
									}
									
									else{
											alert('error! could not find the item');
										}	
					}
					
					
// Hide Maori Translations
function hideMaori(whichBox)
					{
						var whichBox;
							if (whichBox == 1)
											{
											//alert('Hello this is box one.');
											document.getElementById('box1').style.display = 'none';
											}
											
							else if(whichBox == 2)
									{
										//alert('Hello this is box two.');
										document.getElementById('box2').style.display = 'none';
									}
									
							else if(whichBox == 3)
									{
									 //alert('Hello this is box 3...');
									 document.getElementById('box3').style.display = 'none';
									}
									
									else{
											alert('error! could not find the item');
										}	
					}					