// JavaScript Document
<!--
function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
//-->
<!--
function open_win(url_add)
   {
   window.open(url_add,"definition1",
   'fullscreen=off,width=450,height=250,top=330,left=600,menubar=no,status=yes,location=yes,toolbar=no,scrollbars=yes'); return false;
   focus();
   }
// -->
function printpage()
{
window.print();
}
function mouseOver()
{
document.getElementById("b1").src ="images/print_over.png";
}
function mouseOut()
{
document.getElementById("b1").src ="images/print.png";
}

<!--
// PRELOADING IMAGES
if (document.images) {
 img1_on =new Image(); img1_on.src="images/blog_small.png"; 
 img1_off=new Image(); img1_off.src="images/blog-large.png"; 
 
 img2_on =new Image(); img2_on.src ="images/facebook_small.png"; 
 img2_off=new Image(); img2_off.src="images/facebook_large.png";
 
 img3_on =new Image(); img3_on.src ="images/donate_small.png"; 
 img3_off=new Image(); img3_off.src="images/donate_large.png"; 
 
 img4_on =new Image(); img4_on.src ="images/rss_small.png"; 
 img4_off=new Image(); img4_off.src="images/rss_large.png";
 
 img5_on =new Image(); img5_on.src ="images/back_over.png"; 
 img5_off=new Image(); img5_off.src="images/back_button.png";
 
 img6_on =new Image(); img6_on.src ="images/search_over.png"; 
 img6_off=new Image(); img6_off.src="images/search.png";
}
function movr(k) {
 if (document.images) 
  eval('document.img'+k+'.src=img'+k+'_on.src');
}
function mout(k) {
 if (document.images) 
  eval('document.img'+k+'.src=img'+k+'_off.src');
}
function handleOver() {
 if (document.images) 
  document.imgName.src=img_on.src;
}
function handleOut() {
 if (document.images) 
  document.imgName.src=img_off.src;
}
//-->
function ShowItem (itemID) {
  var x = document.getElementById(itemID);
  if (x)
    x.style.visibility = "visible";
  return true;
}

function HideItem (itemID) { 
  var x = document.getElementById(itemID);
  if (x)
     x.style.visibility = "hidden";
  return true;
}

 
function navMouseover(obj) {
				obj.style.backgroundColor="232a32";
				obj.style.color="232a32";
			}
 
			function navMouseout(obj){
				obj.style.backgroundColor="ffffff";
				obj.style.color="0000cc";
			}
 
			function toggle(obj) {				
				 
				var parent = obj.parentNode;
				
				var list  = parent.getElementsByTagName('div');
				
				for (i=0; i<list.length; i++) {
					
					if (list[i].className=='faq_hidden') {
						list[i].className='faq_visible';
					} else if(list[i].className=='faq_visible')  {
						list[i].className='faq_hidden';
					} else if (list[i].className=='nordge_closed') {
						list[i].className='nordge_open';
					} else if(list[i].className=='nordge_open') {
						list[i].className='nordge_closed';
					}
 
				}
 
			}
