function imageOver(img)
{
	img.src = folder +  "images/" + img.name + "_over.jpg";
}

function imageRestore(img)
{
	img.src = folder + "images/" + img.name + ".jpg";
}


function putImage(img,url)
{
	img.src = url;
}

function popupWindow(URL) {
window.open(URL, 'popup', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=608,height=410');
}

function ChooseLanguage(lan){
/*	if (lan == "esp")
		location.href="../Espanol";
	else if (lan == "por")
		location.href="../Portugues";*/
	if (lan == "esp")
		location.href="/Espanol/index.php";
	else if (lan == "por")
		location.href="/Portugues/index.php";
	else
		location.href="/Ingles/index.php";
}

function sender(idLan)
{
	var texto;
	
	switch (idLan)
	{
		case 1:	
			texto = "Este link pertenece a la Web de Grupo ASSA:";
			break;
		case 2:	
			texto = "Este link pertence a Web do Grupo ASSA:";
			break;
		case 3:	
			texto = "This link belongs to Grupo ASSA's Web:";
			break;
	}				
		
	window.navigate('mailto:?subject=Grupo ASSA&amp;body=' + texto + ' '+escape(this.window.location));
}

function printer_friendly()
{
	var win, obj=null;
//	win=window.open(window.location.href + "&print=1","Print_Friendly","status=0, toolbar=0,scrollbars=1, location=0, width=772,height=500,top=0,left=75");
	win=window.open(folder + "print.php" + window.location.search,"Print_Friendly","status=0, toolbar=0,scrollbars=1, location=0, width=700,height=500,top=0,left=75");

	//obj=win.document.getElementById("botonesFooter"); 
	//if (obj)
	//{
	//	obj.style.display='none'; 
	//}
	
}
/*function printer()
{
	var obj=document.getElementById("texto_printer"); 
	if (obj)
	{
		obj.style.display='none'; 
		window.print(); 
		obj.style.display='block';
	}
}*/