/* ***************************************************
 Javascript info : 
 
 author     :	Francesco Izzo	
 
 date  	    :	may 2002
 project    :	AWE - Semaine Judiciaire
 copyright  :	Archilex sa 

 ----------------------------------------
 Archilex sa
 via al molino - c.p. 615
 6916 Lugano - Grancia
 tel. +41 (0)91 980 08 08

 e-mail : 	info@archilex.com
 http:		www.archilex.com
	
	

**************************************************** */

var myPopUp;

//var win = this;


var n = 0;
var myOldTarget = 1
var myOldStr = " ";

// ------------------------------------------------


function IfEnterstartfindInPageII(str)
{



if (window.event.keyCode == 13)  // checks whether the ENTER key 

   {   	
	
	findInPageII(str,0);
	return false;
	
   }


}



function myTbodyEffect(myTbodyId)
{

 alert(myTbodyId.style.display);
 if ( myTbodyId.style.display = 'none')
 {
 	 myTbodyId.style.display;
 }	
 else
 {
	myTbodyId.style.display ='none';
 }

}

function BandChange(MY_SELECT) 
{   
  
   var	 myindex= MY_SELECT.selectedIndex;    
   var myLocation = MY_SELECT.options[myindex].value;	    
   top.frames[1].frames[1].location.href= myLocation;   
  
} 



// ------------------------------------------------

function findInPageII(str, target) 
{			

	
	
	myOldTarget = target
	if (target == 0)
	{
		
		var win = top.frames[1].frames[2];		
		if (win  == null)				
		{   	  	
		    
		    var win = top.frames[1].frames[1];	
		}
	}		
	
	if ( str != "" )
	{	

		if ( n == 0 )
		{
			myOldStr = str;			
		}

		else		
		{
			
			if ( myOldStr != str )
			{
				n = 0;
				myOldStr = str;
				
			}
		}									
			
	
	
	}
	

	if ( navigator.appName == "Microsoft Internet Explorer")
	{
		var txt, i, found;					
		txt = win.document.body.createTextRange();
		for (i = 0; i <= n && (found = txt.findText(str)) != false; i++) 
		{
  		  txt.moveStart("character", 1);
		  txt.moveEnd("textedit");
		}
	
	
		if (found) 
		{
			txt.moveStart("character", -1);
			txt.findText(str);
			txt.select();
			txt.scrollIntoView();
			n++;
		}
		else 
		{
			if (n > 0)
			{
				n = 0;				
				findInPageII(str,myOldTarget);
			}
			else
			{	
				alert(str + " Aucune occurrence trouvée.");
			}
	
		}
	
	}
	else
	{
			
		
		if (!win.find(str))
		{
			while(win.find(str, false, true))
			n++;
		}
		else
		{
			n++;
			alert(n);
			if (n == 0) alert(str + " Aucune occurrence trouvée.");
		}
		
	}



}




function MyDocPopUp(myFile) 
{	
			
	if (typeof myPopUp  == 'object')
	{					
	  
            if (myPopUp.closed == false)
            {
			    
                myPopUp.close();

            }
	}			
	
			
			
			
        myPopUp = window.open(myFile,'','fullscreen=0,scrollbars=1,resizable=1, toolbar=0,width=500, height=400');																		
				
                        
 }


function MySearch()
{
     	alert('En cours de construction');
	// per abilitare la ricerca eliminare il commento alle due linee seguenti
	//top.frames[1].frames[0].location =  "mainsearch.html";
 	//top.frames[1].frames[1].location =  "recherche_blank.html";

}


function myExpand(myImage, myTBODY)
{
	
	if ( myTBODY.style.display == 'none')
		{
		  myImage.src = "../images/square.gif";
		  myTBODY.style.display = '';
		}
	else		
		{
		  myImage.src = "../images/square.gif";
		  myTBODY.style.display = 'none';
		}
	

}

