// JavaScript Document

	function vars(name,value)
	{
		window.document.myFlash.SetVariable(name,value);
	}
	
	function escalar(){
		window.moveTo(-4,-4);
		window.resizeTo(screen.width+8,screen.availHeight+8);		
	}
	
	function mostrarShare(){
		document.getElementById("divClicAddThisInt").style.visibility="visible";
	}

	function ocultarShare(){
		document.getElementById("divClicAddThisInt").style.visibility="hidden";
	}
	
	function contacto()
	{		
		opendivwin('557','550','./contacto.php');
		bloquear();
	}	
	
	function empleo()
	{		
		opendivwin('557','550','./empleo.php');
		bloquear();
	}	
	
	function myFlash_DoFSCommand(command, args)
	{ 
		//alert(command);
		switch (command)
		{
			case "escalarNavegador":
			escalar();
			break;
			
			case "mostrarShare":
			mostrarShare();
			break;
			
			case "comunicateConNosotros":
			contacto();
			break;	
			
			case "formularioTrabajo":
			empleo();
			break;					
			
						
		}
	}
	
