/**
 * @author João Carlos C. Aires de Sousa
 */

/***********************************************************************/
/*                           Navegation tree                           */
/***********************************************************************/


	function Toggle(item) {

				var i = 0;
				var auxItem = "";
			
   				obj=window.document.getElementById(item);
				
   				visible=(obj.style.display!="none");
   				key=window.document.getElementById("x" + item);
				
  				
				if (visible) {
     				obj.style.display="none";
					
     				//key.src="/usr/users1/servicos/seagull/public_html/themes/sdi2/images/treeimg/treePlus.gif";
					  key.innerHTML="+";
					  
   				} else {
      				obj.style.display = "block";
					//document.getElementById("norm").style.color ="#ff6633";
					
      				//key.src="/usr/users1/servicos/seagull/public_html/themes/sdi2/images/treeimg/treeMinus.gif";
					key.innerHTML="-";
					
					for(i=0; i<=12; i++){
					  //alert(i);
					  auxItem = "support" + i;
					 
					  if(auxItem != item){
					  	
					     window.document.getElementById(auxItem).style.display = "none";
						 //document.getElementById("sele").style.color = "#003366";
						 //document.getElementById("sele").style.textDecoration = "none";
						 
						 window.document.getElementById("x" + auxItem).innerHTML = "+";
					  }
						
					}
					
   				}
			}
			
			
		function subToggle(item) {

				var i = 0;
				var auxItem = "";
			
   				obj=window.document.getElementById(item);
				
   				visible=(obj.style.display!="none");
   				key=window.document.getElementById("x" + item);
				
  				
				if (visible) {
     				obj.style.display="none";
					
					  key.innerHTML="+";
					  
   				} else {
      				obj.style.display = "block";
					key.innerHTML="-";
					
					/*for(i=0; i<=12; i++){
					  //alert(i);
					  auxItem = "support" + i;
					 
					  if(auxItem != item){
					  	
					     window.document.getElementById(auxItem).style.display = "none";
						 //document.getElementById("sele").style.color = "#003366";
						 //document.getElementById("sele").style.textDecoration = "none";
						 
						 window.document.getElementById("x" + auxItem).innerHTML = "+";
					  }
						
					}*/
					
   				}
			}		
			
			
	function ShowInfo(item) {
		var collapseItem = "";
		var i = 0;
		obj=document.getElementById(item);
		obj.style.display = "block";
		
		for(i=0; i<=13; i++){
					  //alert(i);
			 collapseItem = "info" + i;
					 
			 if(collapseItem != item){
					  	
			    window.document.getElementById(collapseItem).style.display = "none";
			  
			}
						
		}		
		
		
	}
	
	function HiddeInfo(item) {
		
		obj=document.getElementById(item);
		obj.style.display = "none";
		
		
	}	
	
/**********************************************************************/
/*                            Rollover functions                      */
/**********************************************************************/	

   function mouseIn(item){
   	     
	  obj = document.getElementById(item);
	  obj.src = SGL_JS_WEBROOT + "/themes/" +SGL_JS_THEME + "/images/" + item + "_over.jpg";
	    //alert(obj.src);
	  
   }
   
   function mouseOut(item){
   	     
	  obj=document.getElementById(item);
	  obj.src = SGL_JS_WEBROOT + "/themes/" + SGL_JS_THEME + "/images/" + item + ".jpg";
	  
   }  
   
/*******************************************************************************/
/*                           Jump menu da 1ª pagina                            */
/*******************************************************************************/  

function go(){
	

	if (document.selecter.select1.options[document.selecter.select1.selectedIndex].value != "none") 
	{
		location = document.selecter.select1.options[document.selecter.select1.selectedIndex].value;
	} 
   
 }  
/*******************************************************************************/
/*                           popupWindow                                       */
/*******************************************************************************/

function openFORMWINDOW(){

   window.open('http://paginas.fe.up.pt/~sdinf/events/2008/formacao.html','Calendário_de_Formação','menubar=no,width=520,height=780,toolbar=no');

} 
 
function openFORMWINDOW1(){

   window.open('http://paginas.fe.up.pt/~sdinf/events/2008/formacao1.html','Calendário_de_Formação','menubar=no,width=520,height=780,toolbar=no');

}   
   
function openFORMWINDOW2(){
	alert("entrou");
   window.open("http://paginas.fe.up.pt/~sdinf/events/2009/widget.html",null,"menubar=no,width=250,height=370,toolbar=no, location=no");
return false;
}

function open_win()
{
window.open("http://paginas.fe.up.pt/~sdinf/events/2009/widget.html","_blank","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=yes, width=300, height=370");
}
   
function open_win2()
{
	
window.open("http://paginas.fe.up.pt/~sdinf/events/2009/planos2009.html","_blank","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=yes, width=1000, height=750");
}    

