	function showhide(s){
	  while(s.nodeType!=1 && s.nodeName.toLowerCase()!='span'){s=s.nextSibling};
	  s.className=(s.className=='showSmall')?'hide':'showSmall';
	  return false;
	}
	
	
	window.onload=getReady;
	function getReady()
	{
	  var links = document.getElementsByTagName("a");
	  for (var i=0; i<links.length; i++)
	  	{
			if (links[i].className == "show")
				{
				  links[i].onclick = function() 
				  	{
					  return showhide(this.nextSibling);
		 			}
				}
		}
	}
	
	function roll_over(img_name, img_src)
   {
   document[img_name].src = img_src;
   }
   
   var theObj="";

function toolTip(text,me) {
  theObj=me;
  theObj.onmousemove=updatePos;
  document.getElementById('toolTipBox').innerHTML=text;
  document.getElementById('toolTipBox').style.display="block";
  window.onscroll=updatePos;
}

function updatePos() {
  var ev=arguments[0]?arguments[0]:event;
  var x=ev.clientX;
  var y=ev.clientY;
  diffX=-200;
  diffY=40;
  document.getElementById('toolTipBox').style.top  = y-2+diffY+document.body.scrollTop+ "px";
  document.getElementById('toolTipBox').style.left = x-2+diffX+document.body.scrollLeft+"px";
  theObj.onmouseout=hideMe;
}
function hideMe() {
  document.getElementById('toolTipBox').style.display="none";
}

//----- flabelos
function newwinl(url) {
popup1 = window.open(url,"popup1","toolbar=0,location=0,directories=0,status=0,scrollbars=no,resizable=0,copyhistory=no,width=257,height=480");
if (navigator.appName == "Netscape" && parseInt(navigator.appVersion.substring(0,1)) >= 3)
  popup1.focus();
}
function newwinr(url) {
popup2 = window.open(url,"popup2","toolbar=0,location=0,directories=0,status=0,scrollbars=no,resizable=0,copyhistory=no,width=380,height=400");
if (navigator.appName == "Netscape" && parseInt(navigator.appVersion.substring(0,1)) >= 3)
  popup2.focus();
}
function newwin(url) {
popup3 = window.open(url,"popup3","toolbar=0,location=0,directories=0,status=0,scrollbars=no,resizable=0,copyhistory=no,width=500,height=306");
if (navigator.appName == "Netscape" && parseInt(navigator.appVersion.substring(0,1)) >= 3)
  popup2.focus();
}
//----- flabelos