
<!--
   
   function mouseOver(src,colorOver)
   {
   src.style.cursor = 'hand'; 
   src.bgColor = colorOver;
   
   }
   function mouseOut(src,colorIn)
   {
   src.style.cursor = 'default';
   src.bgColor = colorIn;
    
   }

   function mouseLinkOn(src, page){	
	 
		document.getElementById(src).style.color = 'white';
		document.getElementById(src).style.fontWeight = 'bolder';
		document.getElementById(src).style.textDecoration = 'none';
	 
   }

	function mouseLinkOut(src, page){				
		if(src==page)
		{
			document.getElementById(src).style.color = 'white';
			document.getElementById(src).style.fontWeight = 'bolder';
			document.getElementById(src).style.textDecoration = 'none';

		}else{		
			document.getElementById(src).style.color = 'brown';
			document.getElementById(src).style.fontWeight = 'bolder';
			document.getElementById(src).style.textDecoration = 'none';
		}
	 
   }

	
   function open_window(url){
		var info_win = null;
		info_win = window.open(url, "Info", "width=400, height=400, ,screenX=100,screenY=100,top=100,left=100, toolbar=no, status=yes, scrollbars, resize=yes, menubar=no");
		info_win.focus();
		}

	function open_window2(url){
		var info_win = null;
		info_win = window.open(url, "Info", "width=550, height=150, ,screenX=100,screenY=100,top=100,left=100, toolbar=no, status=yes, scrollbars, resize=yes, menubar=no");
		info_win.focus();
		}

  
// -->
