﻿loc = new Array(5);

loc[0] = "Samoa Industrial, S.A. - Spain<br>Pol. Ind. Porceyo, I-14 · Camino del Font&aacute;n, 831<br>E-33392 GIJ&Oacute;N (Asturias)<br>Box 103 E-33200<br>Tel.:+34 985 381 488 - Fax: +34 985 147 213";

loc[1] = "Samoa-Hallbauer GmbH - Germany<br>Industriestraße 18<br>68519 Viernheim<br>Telefon: 06204 70 950 - Telefax: 06204 70 95 33";

loc[2] = "Samoa, Ltd. - U.K. - United Kingdom and Rep. of Ireland<br>Asturias House - Barrs Fold Road - Wingates Industrial Park<br>WESTHOUGHTON. BL5 3XP<br>Tel.: (01942) 85 06 00 - Fax: (01942) 81 21 60";

loc[3] = "Samoa, S.&aacute;.r.l.<br>4, Rue de Zellenberg<br>Boite postale 70103<br>67602 Selestat Codex<br>T?l.: 03 88 82 79 62 - Fax: 03 88 82 77 88";

loc[4] = "Samson Corporation - United States and Canada<br>One Samson Way - Swannanoa, NC 28778<br>Ph.: 828-686 8511 - Fax: 828 686 8533";



var visible = "visible";

var ocultar = "hidden";



if (ns4) capa = document.layers['localizacion'];

if (ie4) capa = document.all['localizacion'];



function muestra_loc(num){

	if (dom){

		document.getElementById('localizacion').innerHTML=loc[num];

		document.getElementById('localizacion').style.visibility = visible;

	}

	else {

		if (ns4){

			capa.document.open();

			capa.document.write(txt);

			capa.document.close();

			capa.visibility = "show";

		}

		else {

			capa.innerHTML=loc[num];

			capa.style.visibility = visible;

		}

	}

}

function oculta_loc(){

		if(ns4) capa.visibiity = "hide";

		else  if (dom) document.getElementById('localizacion').style.visibility = ocultar;

					else capa.style.visibility = ocultar;

}

