//SE VIENE PREMUTO "INVIO" DALLA CASELLA DI TESTO
function PushEnter (evt,pg)
{
evt = (evt) ? evt : event;
var charCode = (evt.charCode) ? evt.charCode : ((evt.keyCode) ? evt.keyCode : ((evt.which) ? evt.which : 0));

if (charCode == 13)
	{
	FQCode (pg);
	return false;
	}

return true;
}


//str=str.substring(x,y);    x č il numero di caratteri che toglie, y č la lunghezza della nuova stringa
//str.charAt(x);			 indica il carattere presente in str all'indice x 
//ELIMINA SPAZI E TRATTINI DAL CODICE INSERITO E RIDIRIGE ALLA PAGINA CORRISPONDENTE
function FQCode(f)
{
TheCookie = "QL=";
var a="";
var c,e="",b,d="",d2;
// Particular case: Deletes the initial blanks
while (f.length)												//per la lunghezza della stringa
	if ((f.charAt (0) == " ") || (f.charAt (0) == "-") || (f.charAt (0) == "/") || (f.charAt (0) == '\\') || (f.charAt (0) == '_'))			//se il primo carat č spazio o '-' o '/' o '\'
		f = f.substring (1,f.length);							//toglie 1 carattere all'inzio della stringa che sarą lunga str-1
	else
		break;													//altrimenti esce dal ciclo			
		
// Particoular case: Deletes the final blanks
while (f.length)																//per la lunghezza della stringa
	if ((f.charAt (f.length-1) == " ") || (f.charAt (f.length-1) == "-") || (f.charAt (f.length-1) == "/") || (f.charAt (f.length-1) == "\\") || (f.charAt (f.length-1) == "_"))		//se l'ultimo carattere č spazio o '-' o '/' o '\'(-1 per il terminatore)
		f = f.substring (0,f.length-1);											//la trigna viene diminuita di un carattere alla fine 
	else
		break;			
		
// Deletes multiple (and not) internal blanks
for (c=0;c<f.length;c++)									//per la lunghezza della stringa
{	
	if ((f.charAt (c) == " ") || (f.charAt (c) == "-") || (f.charAt (c) == "/") || (f.charAt (c) == "\\") || (f.charAt (c) == "_") || (f.charAt (0) == '.'))		//se car corrente č spazio o '-' o '/' o '\'
	{
		a = f.substring (0,f.length-(f.length-c));			//sottostringa del primo pezzo
		b = f.substring (c+1,f.length);						//sottostringa del secondo pezzo
		f = a + b;											//unione delle 2 sottostringhe
		c=0;												//c=0 per riprendere in esame la strigna da capo (caso di pił spazi)
	}
}
	
// Particular case: no insertion
if (f.length == 0)
	{
	alert ("No se ha introducido ningun código.");
	return;
	}

f = f.toUpperCase ();								//Trasforma carattere per carattere in maiuscole ingrandendo man mano la stringa e

// Verify of the page's existence	
if (AddrFromPag(f) == "#")							//Se la pagina non esiste
	alert ("El código "+f+ "  no existe.");
else
	window.location = "es/" + AddrFromPag (f);		//Altrimenti esiste e di reindirizza a quella pag
	
}



function AddrFromPag (n)
{
//PEAK
if (n =="PEAK")
	return ("p-ita3.htm")
if (n =="1961")
	return ("catalogo1.htm#1961");
if (n =="1962")
	return ("catalogo1.htm#1962");
if ((n =="1964") || (n =="1964L") || (n =="1964HI"))
	return ("catalogo1.htm#1964");
if ((n =="1966")  || (n =="1966HI"))
	return ("catalogo1.htm#1966");
if ((n =="1972") || (n =="197250") || (n =="1972100") || (n =="1972200") || (n =="1972300") || (n =="1972500") || (n =="1972700") || (n =="19721000") || (n =="1972300S") || (n =="1972500S") || (n =="1972700S") || (n =="19721000S"))
	return ("catalogo1.htm#1972");
if (n =="1975")
	return ("catalogo1.htm#1975");
if (n =="1976")
	return ("catalogo1.htm#1976");
if ((n =="1977") || (n=="1977D") || (n=="1977OVT") || (n=="1977OVTA") || (n=="1977OVTB"))
	return ("catalogo2.htm#1977");
if (n =="1980")
	return ("catalogo2.htm#1980");
if (n =="1983")
	return ("catalogo2.htm#1983");
if ((n =="1985") || (n=="19857") || (n=="198510") || (n=="198514") || (n=="198520"))
	return ("catalogo2.htm#1985");
if (n =="1986")
	return ("catalogo2.htm#1986");
if ((n =="1987") || (n=="1987HI"))
	return ("catalogo2.htm#1987");
if (n =="1989")
	return ("catalogo3.htm#1989");
if ((n =="19904") || (n =="1990"))
	return ("catalogo3.htm#19904");
if (n =="19907")
	return ("catalogo3.htm#19907");
if ((n =="1994") || (n =="19942") || (n =="19944"))
	return ("catalogo3.htm#1994");
if ((n =="1996") || (n =="1996L") || (n =="1996HI"))
	return ("catalogo3.htm#1996");
if (n =="1997")
	return ("catalogo3.htm#1997");
if ((n =="1998") || (n =="19998HI"))
	return ("catalogo3.htm#1998");
if (n =="1999")
	return ("catalogo4.htm#1999");
if ((n =="2020") || (n=="2030"))
	return ("catalogo6.htm#2020");
if ((n =="2001") || (n =="200115") || (n =="200115LONG") || (n =="200115L") || (n =="200125") || (n =="200150") || (n =="200175") || (n =="2001100"))
	return ("catalogo4.htm#2001");
if ((n =="2003") || (n=="1209SA3") || (n =="3407SA3") || (n=="1006SA3") || (n =="1209WZ3") || (n=="3408WZ3") || (n =="1006WZ3") || (n=="1504WA3") || (n=="2003WA3") || (n=="20031209SA3") || (n =="20033407SA3") || (n=="20031006SA3") || (n =="20031209WZ3") || (n=="20033408WZ3") || (n =="20031006WZ3") || (n=="20031504WA3") || (n=="30022003WA3"))
	return ("catalogo4.htm#WA3");
	
if ((n =="200310M") || (n =="20036M") || (n =="20038P") || (n =="20035P") || (n =="20035PLED") || (n =="20038CU"))
	return ("linen_tester.htm");
	
if (n =="2004")
	return ("catalogo5.htm#2004");
if ((n =="2008") || (n=="200825") || (n=="200850") || (n=="200875") || (n=="2008100"))
	return ("catalogo5.htm#2008");
if ((n =="2008SET") || (n =="2008SET25") || (n =="2008SET50") || (n =="2008SET75") || (n =="2008SET100") || (n =="2008SETHX") || (n =="2008SETHX25") || (n =="2008SETHX50") || (n =="2008SETHX75") || (n =="2008SETHX100") || (n =="2008LH")|| (n =="2008HX"))
	return ("catalogo5.htm#2008SET");
if ((n =="2009") || (n=="200920") || (n=="200940") || (n=="200960") || (n=="2009100"))
	return ("catalogo5.htm#2009");
if (n =="2010")
	return ("catalogo5.htm#2010");
if (n =="2015")
	return ("catalogo5.htm#2015");
if ((n =="2016") || (n=="2016L") || (n=="2016HI"))
	return ("catalogo6.htm#2016");
if (n =="2018")
	return ("catalogo6.htm#2018");
if ((n =="2021") || (n =="2021-15") || (n =="2021-22"))
	return ("catalogo6.htm#2021");
if ((n =="2022") || (n =="2022-35") || (n =="2022-55") || (n=="2022-75"))
	return ("catalogo6.htm#2022");
if ((n =="2023") || (n=="2023HI"))
	return ("catalogo7.htm#2023");
if (n =="2027")
	return ("catalogo7.htm#2027");
if ((n =="2028") || (n=="2028HI"))
	return ("catalogo7.htm#2028");	
if (n =="2032")
	return ("catalogo7.htm#2032");
if ((n =="2033") || (n =="2033-100") || (n =="2033-115"))
	return ("catalogo7.htm#2033");	
if ((n =="2034") || (n =="203420") || (n =="203440") || (n =="203440CIL") || (n =="203460") || (n =="203460CIL") || (n =="2034100") || (n =="2034100CIL") || (n =="2034150") || (n =="2034150CIL") || (n =="2034200") || (n =="2034200CIL") || (n =="2034300") || (n =="2034300CIL") || (n =="2054") || (n =="205420") || (n =="205420EIM") || (n =="205440") || (n =="205440CIL") || (n =="205440EIM") || (n =="205460") || (n =="205460EIM") || (n =="205460CIL") || (n =="2054100") || (n =="2054100CIL") || (n =="2054100EIM") || (n =="2054150") || (n =="2054150CIL") || (n =="2054200") || (n =="2054200CIL") || (n =="2054300") || (n =="2054300CIL") || (n =="2034CIL") || (n =="2054CIL") || (n =="2054EIM"))
	return ("catalogo8.htm#2034");
if ((n =="2034ROLL") || (n =="2034020ROLL") || (n =="2034040ROLL") || (n =="2034060ROLL") || (n =="2034100ROLL") || (n =="2034150ROLL") || (n =="2034200ROLL") || (n =="2034300ROLL") || (n =="2034CIL040ROLL") || (n =="2034CIL060ROLL") || (n =="2034CIL100ROLL") || (n =="2034CIL150ROLL") || (n =="2034CIL200ROLL") || (n =="2034CIL300ROLL") || (n =="2034CILMROLL") || (n =="2054ROLL") || (n =="205420ROLL") || (n =="205440ROLL") || (n =="205460ROLL") || (n =="2054100ROLL") || (n =="2054150ROLL") || (n =="2054200ROLL") || (n =="2054300ROLL") || (n =="2054EIMROLL") || (n =="2054020EIMROLL") || (n =="2054040EIMROLL") || (n =="2050604EIMROLL") || (n =="2054100EIMROLL") || (n =="2054MROLL") || (n =="2054EIMMROLL") || (n =="2054CILROLL") || (n =="2054CIL40ROLL") || (n =="2054CIL60ROLL") || (n =="2054CIL20ROLL") || (n =="2054CIL100ROLL") || (n =="2054CIL150ROLL") || (n =="2054CIL200ROLL") || (n =="2054CIL300ROLL") || (n =="2054CILMROLL"))
	return ("catalogo8.htm#roll");
if ((n=="2035") || (n=="2035II") || (n=="2035IL") || (n=="2035LI") || (n=="2035LL"))
	return ("catalogo8.htm#2035");
if ((n=="2036")  || (n=="203625") || (n=="203650"))
	return ("catalogo8.htm#2036");
if ((n=="2037") || (n=="2037L") || (n=="2037HI"))
	return ("catalogo8.htm#2037");
if (n=="2038")
	return ("catalogo8.htm#2038");
if (n=="2039")
	return ("catalogo8.htm#2039");
if (n=="2041")
	return ("catalogo9.htm#2041");
if ((n=="2044") || (n=="2066"))
	return ("catalogo9.htm#2044");
if ((n=="2044SET") || (n=="2044SETHX")|| (n=="2066SET") || (n=="2066SETHX")|| (n=="2044LH")  || (n=="2044HX"))
	return ("catalogo9.htm#2044set");
if ((n=="2044HI") || (n=="2066HI"))
	return ("catalogo9.htm#2044HI");
if ((n=="2048") || (n=="2048A13D") || (n=="2048A16D") || (n=="2048A20D") || (n=="2048A26D") || (n=="2048A40D") || (n=="2048A48D") || (n=="2048A60D") || (n=="2048A80D") || (n=="2048V13D") || (n=="2048V16D") || (n=="2048V20D") || (n=="2048V26D"))
	return ("catalogo9.htm#2048");
if ((n=="2049")||(n=="2049SET")||(n=="2049SETHX"))
	return ("catalogo9.htm#2049");
if ((n=="2050") || (n=="205025") || (n=="205050") || (n=="205075") || (n=="2050100"))
	return ("catalogo9.htm#2050");
if ((n=="2051") || (n=="205130") || (n=="205160"))
	return ("catalogo9.htm#2051");
if (n=="2052")
	return ("catalogo10.htm#2052");
if (n=="2053")
	return ("catalogo10.htm#2053");
if ((n=="2055") || (n=="2055L") || (n=="2055HI"))
	return ("catalogo10.htm#2055");
if ((n=="2056")  || (n=="205625")  || (n=="205650"))
	return ("catalogo10.htm#2056");
if ((n=="2057")  || (n=="205735")  || (n=="205755")  || (n=="205775"))
	return ("idee_regalo.htm#2057");
if ((n=="ideeregalo")  || (n=="articoliregalo"))
	return ("idee_regalo.htm");
if ((n=="2058")  || (n=="2059")  || (n=="2060"))
	return ("idee_regalo.htm#2058");
if (n=="2061")
	return ("catalogo10.htm#2061");
if ((n=="2067")  || (n=="20672")  || (n=="20674"))
	return ("catalogo.htm#2067");
if (n=="3703")
	return ("catalogo11.htm#3703");
if (n=="3705")
	return ("catalogo11.htm#3705");
if ((n=="3707") || (n=="3707CBLS"))
	return ("catalogo11.htm#3707");
if (n=="3708")
	return ("catalogo11.htm#3708");
if ((n =="3709")  || (n =="3709A") || (n =="3710") || (n =="3710A") || (n =="3711A") || (n =="3711") || (n =="3711A3") || (n =="3711A2"))
	return ("catalogo2.htm#3709");
if (n=="3712")
	return ("catalogo11.htm#3712");
if ((n=="3713") || (n=="3713L"))
	return ("catalogo11.htm#3713");
if (n=="5100")
	return ("catalogo11.htm#5100");
if (n=="9001")
	return ("catalogo11.htm#9001");
if ((n=="SCALE") || (n=="RETICOLI") || (n=="RETICLE") || (n=="RETICOLO") || (n=="SCALA"))
	return ("catalogo12.htm#scale");	
	
//ANTISTATICI
if ((n=="ANTISTATICO") || (n=="ANTISTATICI") || (n=="ANTISTATIC") || (n=="ANTISTATICS") || (n=="IONE") || (n=="IONI") || (n=="CAR10237") || (n=="COB10397") || (n=="CPL10235") || (n=="CTW10236") || (n=="DIA10260") || (n=="DIA10167") || (n=="ION10119") || (n=="ION10120") || (n=="MISURATOREEL") || (n=="PIG10234") || (n=="SIMAB20") || (n=="SIMAB30") || (n=="SIMAS10") || (n=="SIMAS20000402") || (n=="SIMCOB000122") || (n=="SIMFN75") || (n=="SIMRICFN75") || (n=="SPR955") || (n=="COBRA") || (n=="IONEGUN") || (n=="AB20") || (n=="AS10") || (n=="AS20"))
	return("prod07.htm")
	
//BRINELL
if ((n=="BRINELL") || (n=="BRINELLCHECK"))
	return ("brinell.htm");
if ((n=="201220")||(n=="201240")||(n=="201220A")||(n=="201220AM")||(n=="2012"))
	return ("brinell_powerkit.htm#brinell_optic");
if ((n=="BC10386")||(n=="BC10388")||(n=="SPTOVT000448")||(n=="SPTOVT000668")||(n=="SPTOVT000453")||(n=="USB10359")||(n=="SPTOVT000454")||(n=="SPTOVT000475")||(n=="VALAMA0000511"))
	return ("brinell.htm");
if ((n=="BC10387")||(n=="BC10443"))
	return ("brinell2.htm");
if ((n=="BC10385")||(n=="BC10444")||(n=="SPTOVT000639")||(n=="SPTOVT000454")||(n=="FVK10143")||(n=="SPTOVT000577")||(n=="SPTOVT000578")||(n=="SPTOVT000579"))
	return ("brinell_powerkit.htm");

if ((n=="BHT10440")||(n=="BHT10441")||(n=="BHT10442"))
	return ("portable_brinell_durometer.htm");
if ((n=="ISHSA")||(n=="ISHSD")||(n=="ISHSC")||(n=="SHORE")||(n=="ISHSTAC")||(n=="ISHSTD"))
	return ("shore_durometers.htm");
if ((n=="EPX300")||(n=="EPX5500")||(n=="ETIPD"))
	return ("hardness_testers.htm");
	
//CAPILLAROSCOPIO	
if ((n=="CAP10279") || (n=="CAP10281")|| (n=="CAPILLAROSCOPIO") || (n=="CAPILLAROSCOPE"))
	return ("capillaroscope.htm");	
if ((n=="VMC8,3")||(n=="VMC15")||(n=="VMC20")||(n=="VMC35")||(n=="VMC50")||(n=="VMC75")||(n=="VMC90")||(n=="VMC200")||(n=="CMS150")||(n=="CMS250")||(n=="CMS450")||(n=="CMS1000"))
	return ("capillaroscope.htm");
if ((n=="SPTCAP000664"))
	return ("capillaroscope_2.htm");
if ((n=="VALAMA000567")||(n=="VALAMA000568"))
	return ("capillaroscope_3.htm");

//DERMAVISION-TRICOVISION
if ((n=="TRIOVT000059")||(n=="TRIOVT000689")||(n=="SPTOVT000690")||(n=="SPTOVT000691")||(n=="SPTPEA000076"))
	return ("prod32.htm");
if ((n=="DEROVT000075")||(n=="DEROVT000637")||(n=="SPTOVT000636")||(n=="SPTOVT000688")||(n=="SPTTOH000235")||(n=="SPTCED000685"))
	return ("prod33.htm");

//ENDOSCOPI - FIBROSCOPI
if ((n=="FIBLIT10221") || (n=="FIBLIT10341") || (n=="FIBLIT10259") || (n=="FIBLIT10364") || (n=="FIBLIT10354") || (n=="FIBLIT10354") || (n=="FIBLIT10365") || (n=="FIBERLITE") || (n=="FIBROLITE") || (n=="FIBERSCOPE") || (n=="FIBROSCOPIO") || (n=="FIBER") || (n=="FIBRO") || (n=="FIBROSCOPI"))
	return("fibro1.htm");
if ((n=="FIBIEA000209") || (n=="FIBIEA000582") || (n=="FIBIEA000614") || (n=="FIBIEA000615") || (n=="FIBERPRO") || (n=="FIBROPRO"))
	return("fiberscope.htm");
if ((n=="ENDOAP1V") || (n=="ENDOAP1PC") || (n=="ENDO") || (n=="ENDOSCOPIO") || (n=="ENDOSCOPE") || (n=="ENDOSCOPI") || (n=="ENDOAP1"))
	return("endo1.htm");
if ((n=="ENDO2100O") || (n=="ENDO2100V") || (n=="ENDO2100PC") || (n=="ENDO2100"))
	return("endo2.htm");
if ((n=="ENDO655O") || (n=="ENDO655V") || (n=="ENDO655PC") || (n=="ENDO655"))
	return("endo4.htm");
if ((n=="ENDO8140O") || (n=="ENDO8140V") || (n=="ENDO8140PC") || (n=="ENDO8140") || (n=="ENDO8225O") || (n=="ENDO8225V") || (n=="ENDO8225PC") || (n=="ENDO8225") || (n=="ENDO8250") || (n=="ENDO8250O") || (n=="ENDO8250V") || (n=="ENDO8250PC") || (n=="ENDO8425") || (n=="ENDO8425O") || (n=="ENDO8425V") || (n=="ENDO8425PC") || (n=="ENDO8625") || (n=="ENDO8625O") || (n=="ENDO8625V") || (n=="ENDO8625PC"))
	return("endo5.htm");
if ((n=="FIBIEA000229")||(n=="FIBIEA000582")||(n=="GEN10243")||(n=="VALAMA000611"))
	return ("fiberscope.htm");
if ((n=="FIBLIT10221")||(n=="FIBLIT10341")||(n=="VALOVT000607"))
	return ("fibro1.htm");

//JUMBO
if (n=="JUMBO")
	return("jumbo.htm");
if ((n=="SPTOVT000499")||(n=="SPTOVT000388")||(n=="LDH10")||(n=="200P")||(n=="320P")||(n=="SPTOVT000493")||(n=="SLIMAR000205")||(n=="SPTLIN000374")||(n=="SPTOVT000503")||(n=="SPTOVT000034")||(n=="SPTOVT000504")||(n=="SPTALP000505")||(n=="SPTOVT000516"))
	return ("jumbo.htm");
if ((n=="WSJ") || (n=="WSJ10263") || (n=="WORKSTATIONJUMBO")) 
	return("jumbo.htm#WSJ")
if ((n=="JUMBOLITE") || (n=="JUMBOL") || (n=="JLI10268") || (n=="JLI") || (n=="JLT")) 
	return("jumbo2.htm");
if ((n=="JUMBOZOOM") || (n=="JUMBOLITEZOOM") || (n=="JLZ") || (n=="JUMBOZOOMK1") || (n=="JUMBOZOOMK2") || (n=="JLZ10269") || (n=="JLZ10318")) 
	return("jumbo2.htm");
if ((n=="JLI10268")||(n=="SPTOVT000633")||(n=="SPTOVT000492")||(n=="SPTOVT000547")||(n=="LLE10121")||(n=="JLZ10269")||(n=="JLZ10318")||(n=="SPTOVT000483")||(n=="SPTOVT000484")||(n=="SPTSIC000382")||(n=="SPTOVT000554")||(n=="SPTOVT000364")||(n=="SPTOVT000555")||(n=="SPTOVT000521")||(n=="SPTOVT000522")||(n=="SPTOVT000032")||(n=="SPTOVT000501")||(n=="SPTOVT000033"))
	return ("jumbo2.htm");
if ((n=="SPTOVT000489")||(n=="SPTOVT000491")||(n=="SPTOVT000494")||(n=="STANDPRO10177")||(n=="STANDPRM10178")||(n=="STANDPCX10179")||(n=="STANDCXM10228")||(n=="SPTOVT000396")||(n=="SPTOVT000399")||(n=="VCRZLP10360")||(n=="VCRZP10207")||(n=="SPTOVT000621")||(n=="SPTOVT000626"))
	return ("jumbo_acs.htm");
if ((n=="LDH15")||(n=="LDH50")||(n=="LDH100")||(n=="LDH200")||(n=="LDH300")||(n=="LDH400")||(n=="LDH500")||(n=="LDH2350")||(n=="SE10")||(n=="SE15")||(n=="SE20")||(n=="A25")||(n=="D50")||(n=="F75")||(n=="G100")||(n=="H150")||(n=="250P")||(n=="475P")||(n=="750P")||(n=="1100P")||(n=="1500P")||(n=="2350P")||(n=="CX200")||(n=="7500P"))
	return ("jumbo_obt.htm");
if ((n=="SPTOVT000515")||(n=="SPTOVT000500")||(n=="SPTOVT000502")||(n=="SPTMEL000314")||(n=="SPTOVT000514")||(n=="STANDCXM10228")||(n=="SPTOVT000266")||(n=="SPTOVT000464")||(n=="SPTMON000495"))
	return ("jumbolite_acs.htm");
if ((n=="SPTOVT000517")||(n=="SPTOVT000487")||(n=="SPTIMA000373")||(n=="SPTOVT000556")||(n=="SPTOVT000557")||(n=="SPTOVT000558")||(n=="SVC10355")||(n=="SVC10379"))
	return ("jumbopers_acs.htm");
if ((n=="FIR10129"))
	return ("jumbozoom_acs.htm");
if ((n=="JOT10438")||(n=="JUMBOOTLINE"))
	return ("jumbo_otline.htm");

//OPTIC CHECK ULTRAVIOLET
if ((n =="OPTICCHECKULTRAVIOLET") || (n =="ULTRAVIOLET") || (n =="OPTICCHECK"))
	return ("optic_check_uv.htm");

//PENLIGHT	
if ((n=="PENLIGHT") || (n=="PEN") || (n=="PENNA") || (n=="PENNE") || (n=="PENNAILLUMINANTE") || (n=="PENNEILLUMINANTI"))
	return("penlight.htm")
if ((n=="SPTPEN000234")||(n=="SPTPEN000585")||(n=="SPTPEN000345")||(n=="SPTPEN000672")||(n=="SPTPEN000655")||(n=="SPTPEN000654")||(n=="SPTPEN000346")||(n=="SPTALI000676")||(n=="SPTALI000677")||(n=="SPTALI000673")||(n=="SPTOVT000642")||(n=="SPTALP000658")||(n=="SPTPEN000656")||(n=="SPTOVT000657")||(n=="SPTOVT000692")||(n=="SMLELTPIL121"))
	return ("penlight.htm");

//ILLUMINATORI
if ((n=="ILLUMINAZIONE") || (n=="ILLUMINAZIONI") || (n=="ILLUMINATION") || (n=="ILLUMINATIONS") || (n=="LUCE") || (n=="LUCI") || (n=="LIGHT") || (n=="LIGHTS") || (n=="LIGHTING") || (n=="LIGHTINGS") || (n=="ILLUMINANTE") || (n=="ILLUMINANTI") || (n=="LIGTH") || (n=="LIGTHS"))
	return("illuminazione.htm")

if ((n=="SPTOVT000620")||(n=="SPTOVT000645")||(n=="SPTOVT000678")||(n=="SPTOVT000646")||(n=="SPTOVT000647")||(n=="SPTOVT000622")||(n=="SPTOVT000566")||(n=="SPTOVT000625")||(n=="SPTOVT000679")||(n=="SPTOVT000546")||(n=="SPTOVT000071")||(n=="SPTOVT000072")||(n=="SPTOVT000231")||(n=="SPTOVT000463")||(n=="SPTOVT000369")||(n=="SPTOVT000293")||(n=="SPTOVT000534"))
	return ("illuminazione.htm");
	
//ROLL VIDEO / STAND VIDEO
if ((n=="ROLLVIDEO") || (n=="VIDEOROLL") || (n=="VIDEOSTAND") || (n=="STANDVIDEO") || (n=="ROV10132") || (n=="ROV10134") || (n=="ROV10135") || (n=="ROV10196") || (n=="ROV10197") || (n=="ROV10198") || (n=="ROV10199") || (n=="ROV10200") || (n=="STV10190") || (n=="STV10191") || (n=="STV10192") || (n=="STV10193") || (n=="2054ROLLVIDEO") || (n=="2034ROLLVIDEO") || (n=="CILROLLVIDEO") || (n=="2054STANDVIDEO") || (n=="2034STANDVIDEO") || (n=="CILSTANDVIDEO") || (n=="2034CILSTANDVIDEO") || (n=="2054CILSTANDVIDEO") || (n=="2034CILROLLVIDEO") || (n=="2054CILROLLVIDEO") || (n=="2034VIDEOCIL") || (n=="2054VIDEOCIL") || (n=="2034CILROLLVIDEOPLUS"))
	return("rollvideo.htm")
if ((n=="STV10190")||(n=="STV10191")||(n=="STV10192")||(n=="STV10193")||(n=="ROV10135")||(n=="ROV10134")||(n=="ROV10132")||(n=="ROV10196"))
	return ("rollvideo2.htm");
if ((n=="SPTOVT000409")||(n=="SPTOVT000283")||(n=="SPTMEL000003")||(n=="SPTOVT000410")||(n=="SPTOVT000411")||(n=="SPTOVT000412")||(n=="SPTOVT000294")||(n=="SPTOVT000296")||(n=="SPTOVT000291")||(n=="SPTOVT000413")||(n=="RVS25")||(n=="RVS35")||(n=="RS45")||(n=="RV50")||(n=="RV100")||(n=="RS150")||(n=="RV150")||(n=="RVS200")||(n=="RVS210")||(n=="RVS300")||(n=="RVS450")||(n=="RVS675")||(n=="RVS1150")||(n=="SPTOVT000281")||(n=="SPTOVT000282")||(n=="UNIOVT000246")||(n=="SPTCEN000350"))
	return ("rollvideo3.htm");

//RULER CHECK
if ((n=="RULER") || (n=="VIDEORULER") || (n=="RULERCHECK") || (n=="RULERCHECKSYSTEM") || (n=="RULERSYSTEM") || (n=="RIGHELLO") || (n=="RIGHELLI") || (n=="RIGA") || (n=="SISTEMIRULERCHECK") || (n=="VIDEORULERLITE") || (n=="VRL") || (n=="VIDEORULERSTORE") || (n=="VRS") || (n=="VIDEORULERPRO") || (n=="VRPRO") || (n=="VRP") || (n=="OPTICRULERMEASURE") || (n=="ORM") || (n=="VIDEORULERINSPECTION") || (n=="VRI") || (n=="VRIZOOM") || (n=="VRIZ") || (n=="VRZ") || (n=="VIDEORULERZOOM") || (n=="VIDEORULERZOOM500") || (n=="VIDEORULERPRO500") || (n=="VRP500") || (n=="VRZ500") || (n=="VRIZOOM500") || (n=="RULERPRO") || (n=="RULERZOOM") || (n=="RULERLITE") || (n=="RULERSTORE")|| (n=="RULERINSPECTION"))
	return("ruler.htm")

//SOFTWARE
if ((n=="VIDEOVIEW")||(n=="SPTFSW000668"))
	return ("videoview_main.htm");
if ((n=="VIDEOVIEWLIGHT")||(n=="VVL10394"))
	return ("videoviewlight.htm");	
if ((n=="VIDEOVIEWBASIC")||(n=="VVB10395"))
	return ("videoview.htm");	
if ((n=="VIDEOVIEWPRO")||(n=="VVL10396"))
	return ("visioncontrol.htm");	
if ((n=="VIDEOVIEWBASIC+GMD")||(n=="VBG10439"))
	return ("videoviewgmd.htm");		
if ((n=="VIDEOKLITE") || (n=="VIDEOK"))
	return("software.htm");	

//STAND EXPLORER
if ((n=="SE") || (n=="STANDEXPLORER") || (n=="SEVCR") || (n=="SEZOOM") || (n=="SEVCRZLITE") || (n=="SEZLITE") || (n=="SELITE") || (n=="STANDSE"))
	return("se-vcr.htm");
if ((n=="SE10169")||(n=="SEVCR10274")||(n=="SEVCR10275")||(n=="SEZOOM10277"))
	eturn ("se-vcr.htm");
	
//STEREOMICROSCOPI
if ((n=="STEREOMICROSCOPIO") || (n=="STEREOMICROSCOPI") || (n=="STEREOMICROSCOPE"))
	return("micro0.htm")
if ((n=="KIE") || (n=="KIEII") || (n=="KIE2") || (n=="KIELI") || (n=="KIEIL") || (n=="KIELL") || (n=="KIEIIF3") || (n=="KIE2F3") || (n=="KIELLF3") || (n=="KIEILF3") || (n=="KIELIF3") || (n=="KIEF3")) 
	return("micro1.htm")
if ((n=="KIEIIZ3") || (n=="KIE2Z3") || (n=="KIEZ3") || (n=="KIEZ") || (n=="KIELLZ3") || (n=="KIELIZ3") || (n=="KIEILZ3") || (n=="KIEZOOM"))
	return ("micro3.htm")
if ((n=="SMZ") || (n=="SMZ1432L"))
	return ("lenti5.htm")
if ((n=="KIEIIF3110G")||(n=="KIEIIF3115G")||(n=="KIEIIF3120G")||(n=="KIEIIF3210G")||(n=="KIEIIF3215G")||(n=="KIEIIF3220G")||(n=="KIEIIF3410G")||(n=="KIEIIF3415G")||(n=="KIEIIF3420G"))
	return ("micro1.htm");
if ((n=="KIEIIZ3410G")||(n=="KIEIIZ3415G")||(n=="KIEIIZ3420G"))
	return ("micro3.htm");
if ((n=="KIEAE10")||(n=="KIEAE15")||(n=="KIEAE20")||(n=="KIEAMX")||(n=="KIEAMM")||(n=="KIEAMI")||(n=="KIEAA03")||(n=="KIEAA04")||(n=="KIEAA05")||(n=="KIEAA07")||(n=="KIEASG")||(n=="KIEASA")||(n=="KIEAC")||(n=="KIEAK"))
	return ("micro4.htm");
	
//TDE
if ((n=="TDE") || (n=="THREEDIMENSIONALEXPLORER")|| (n=="3DIMENSIONALEXPLORER") || (n=="TDE10073") || (n=="TDE10271") || (n=="TDE10272") || (n=="TDE10273"))
	return ("prod31.htm");
if ((n=="SPTTDE000218")||(n=="SPTTDE000219")||(n=="SPTTDE000220")||(n=="SPTTDE000221")||(n=="SPTOVT000462"))
	return ("prod31.htm");
	
//TELECAMERE
if((n=="TELECAMERA") || (n=="TELECAMERE") || (n=="CAMERA") || (n=="CAMERAS") || (n=="MICROTELECAMERE") || (n=="MICROTELECAMERA") || (n=="MICROCAMERA") || (n=="MICROCAMERAS") || (n=="SPTSIC000382") || (n=="SPTWAT000684") || (n=="SPTPAC000581") || (n=="SPTSIC000022") || (n=="SPTWAT000683"))
	return("microtlc.htm");

//TELECAMERE USB
if ((n=="SPTIMA000681")||(n=="SPTPAC000682"))
	return ("microtlc.htm");
	
//VIDEO AREA EXPLORER
if ((n=="VIDEOAREAEXPLORER") || (n=="VAEX525") || (n=="AREAEXPLORER") || (n=="VIDEOAREA"))
	return("videoarea.htm")
if ((n=="VAEXTV")||(n=="VAEXDIGIT")||(n=="VAEXHTEC"))
	return ("videoarea.htm");

//VIDEO CHECK ROLL
if ((n == "VCR") || (n=="VIDEOCHECKROLL"))
	return ("vcrmain.htm");
if ((n=="UNIOVT000245"))
	return ("vcracs.htm");	

//VCR-SL
if ((n == "VCRSL10208")|| (n == "VCRSL10346") || (n == "VCRSL10378") || (n == "VCRSL10282") || (n == "VCRSL10288")  || (n == "VCRSL")||(n=="VALAMA000212"))
    return ("vcrsl.htm");

//VCR-CX
if ((n == "VCRCX10227") || (n == "VCRCX10377") || (n == "VCRCX10225") || (n == "VCRCX10380") || (n == "VCRCXP10376") || (n == "VCRCXP10310") || (n == "VCRCXP10312") || (n == "VCRCXP10381") || (n=="VCRCX"))
    return ("vcrcx.htm");
if ((n=="STANDSLI10222")||(n=="SPTOVT000624")||(n=="SPTOVT000449")||(n=="USB10392")||(n=="USB10393")||(n=="VALAMA000397"))
	return ("vcrcx-2.htm");
if ((n=="SPTOVT000401")||(n=="SPTOVT000233")||(n=="SPTOVT000232"))
	return ("vcrcx-5.htm");

//VCR-PRO
if ((n == "VCRP10176") || (n == "VCRP10374") || (n == "VCRP10375") || (n == "VCRP10317") || (n=="VCRP"))
	return ("vcrp.htm");

//VCR-Z SLIM
if ((n == "VCRZS10224") || (n == "VCRZS10309") || (n=="VCRZ") || (n=="VCRZS"))
	return ("vcrz.htm");
if ((n=="STANDZSL10230")||(n=="STANDZPY10211")||(n=="STANDCXZ10293")||(n=="SPTOVT000606")||(n=="SPTTOR000080")||(n=="SPTOVT000549")||(n=="FWZ10406"))
	return ("vcrz-2.htm");
if ((n=="STANDZPM10229")||(n=="STANDZCX10214")||(n=="STANDZCXM10322")||(n=="SPTOVT000437"))
	return ("vcrz-5.htm");

//VCR-Z CX
if ((n == "VCRZCX10231") || (n == "VCRZCX10358") || (n == "VCRZCXP10232") || (n == "VCRZCXP10312") || (n=="VCRZCX") || (n=="VCRZCXP"))
	return ("vcrzcx.htm");	
if ((n=="STANDZPCM10215"))
	return ("vcrzcx-3.htm");

//VCR-Z PRO
if ((n == "VCRZP10207") || (n == "VCRZP10308") || (n=="VCRZP"))
	return ("vcrzp.htm");
if ((n=="SPTOVT000241"))
	return ("vcrzp-2.htm");

//VCR-Z LITE
if ((n == "VCRZL10187") || (n == "VCRZL10305") || (n == "VCRZLP10360") || (n == "VCRZLP10304") || (n == "VCRZLCX10188") || (n == "VCRZLCX10307") || (n == "VCRZLCXP10371") || (n == "VCRZLCXP10372") || (n=="VCRZL") || (n=="VCRZLP") || (n=="VCRZLCX") || (n=="VCRZLCXP"))
    return ("vcrzl.htm");
if ((n=="SPTOVT000444")||(n=="USB10404"))
	return ("vcrzl-2.htm");

//VCR INFRARED
if ((n=="VCRINFRARED")||(n=="VIR10050")||(n=="VIR10430")||(n=="VIR10431")||(n=="B30")||(n=="C40")||(n=="E60")||(n=="SPTOVT000230")||(n=="SPTST1000214")||(n=="SPTMEL000037"))
	return ("vcrinfr.htm");


//VIDEO CROSS INSPECTION
if ((n=="VCI10000") || (n=="VCI10025") || (n=="VCI10027") || (n=="VCI10028") || (n=="VCI10029") || (n=="VCI10032") || (n=="VCI") || (n=="VIDEOCROSSINSPECTION"))
	return("vci.htm")
if ((n=="SPTPOW000029")||(n=="SPTMEL000010")||(n=="SPTOVT000257")||(n=="SPTOVT000267"))
	return ("vci.htm");

//VIDEO GLASS SCALE
if ((n == "VGS10143") || (n == "VGS10144") || (n == "VGS10145") || (n == "VGS10146") || (n=="VGS") || (n=="VIDEOGLASSSCALE"))
	return ("vgs.htm");
if ((n=="SPTOVT000336")||(n=="SPTOVT000512")||(n=="SPTOVT000337")||(n=="SPTOVT000338")||(n=="SPTOVT000339")||(n=="SPTOVT000340")||(n=="SPTOVT000457")||(n=="SPTOVT000603")||(n=="VALAMA000641"))
	return ("vgs.htm");
	
//VIDEO MICRO CHECK
if ((n=="VMCDER10257") || (n=="VMCTRI10320") || (n=="VMC10353") || (n=="VMC10352") || (n=="TRIOVT000059") || (n=="DEROVT000082") || (n=="VMC") || (n=="TRICO") || (n=="DERMA") || (n=="DERMATOLOGIA") || (n=="TRICOLOGIA") || (n=="DERMATOLOGY") || (n=="TRICOLOGY") || (n=="VIDEOMICROCHECK"))
	return ("prod02.htm");


//VIS-VIM
if ((n=="VIS10266") || (n=="VIS10037") || (n=="VIS10349") || (n=="VIS10350") || (n=="VIS10264") || (n=="VIS10034") || (n=="VIS10267") || (n=="VIS10046") || (n=="VIS10265") || (n=="VIS10106") || (n=="VIS"))
	return("vsi2.htm#vis")
if ((n=="VIS10266")||(n=="SPTOVT000482")||(n=="VIM10305")||(n=="VIM10022"))
	return ("vsi2.htm");

//VIS-VIM USB
if ((n=="VIS10423")||(n=="VIS10424")||(n=="VIS10425")||(n=="VIS10500"))
	return ("vsi2.htm");	

//VIDEO MACRO ARM
if ((n=="VMA10411")||(n=="VMA10412")||(n=="VMA10413")||(n=="VMA10414")||(n=="VMA10415")||(n=="VMA10416")||(n=="VMA10417")||(n=="VMA10418"))
	return ("vsi3.htm");
if ((n=="SPTLIN000054"))
	return ("vsi3.htm");

//VIDEO STAND INSPECTION
if ((n=="VSI") || (n=="VIDEOSTANDINSPECTION") || (n=="VSI10299") || (n=="VSI10298") || (n=="VSI10342") || (n=="VSI10343") || (n=="VSI10295") || (n=="VSI10297") || (n=="VSI10301") || (n=="VSI10302") || (n=="VSI10303") || (n=="VSI10304") || (n=="VSI10300") || (n=="VSIDIGITALZOOM") || (n=="VSIDZ"))
	return("prod23.htm")
if ((n=="SPTOVT000046")||(n=="SPTSOL000006")||(n=="VIS10038")||(n=="SPTMAN000039")||(n=="VSI10502")||(n=="SPTOVT000465")||(n=="VSI10501")||(n=="VSI10503"))
	return ("prod23.htm");
	
//VIDEO STAND INSPECTION HI-RESOLUTION
if ((n=="VSI10400"))
	return ("vsi_hi.htm");

//VSIK - VSIHK
if ((n=="VSIK110151") || (n=="VSIK210261") || (n=="VSIK1") || (n=="VSIK2") || (n=="VSIK") || (n=="VSIHK110166") || (n=="VSIHK210262") || (n=="VSIHK1") || (n=="VSIHK2") || (n=="VSIHK"))
	return("vsi-k.htm")
if ((n=="SPTOVT000486")||(n=="SPTMAN000372")||(n=="SPTOVT000497")||(n=="SPTOVT000498")||(n=="SPTCEN000030")||(n=="SPTALP000485"))
	return ("vsi-k.htm");

//VSI-K HI-RESOLUTION
if ((n=="VSIKU10422")||(n=="VSIHKU10426"))
	return ("vsi_hi.htm#vsik_hr");	

//2008 USB
if ((n =="2008USB") || (n =="2008+USB") || (n =="2008 USB"))
	return ("2008usb.htm");
if ((n=="2008OMCUSB")||(n=="200850OMCUSB")||(n=="200875OMCUSB")||(n=="2008100OMCUSB")||(n=="2008OMCBUSB")||(n=="200850OMCBUSB")||(n=="200875OMCBUSB")||(n=="2008100OMCBUSB")||(n=="SPTOVT000640"))
	return ("2008usb.htm");
	
//STAND MACRO CHECK - USB MACRO CHECK
if ((n=="MCL10419")||(n=="MCL10420")||(n=="SPTOVT000650")||(n=="STANDMACROCHECK")||(n=="USBMACROCHECK"))
	return ("2008usb.htm#usb_macro_check");
	
//EM-25
if ((n=="EM25OPT025")||(n=="EM25OPT050")||(n=="EM25OPT075")||(n=="EM25OPT100")||(n=="EM25USB025")||(n=="EM25USB050")||(n=="EM25USB075")||(n=="EM25USB100"))
	return ("em25_p01.htm");
if ((n=="RULOVT000653")||(n=="RULOVT000659")||(n=="RULOVT000660")||(n=="SPTOVT000651")||(n=="SPTOVT000661")||(n=="SPTOVT000652")||(n=="SPTOVT000662"))
	return ("em25_p03.htm");

//DMM
if ((n=="DEPTHMEASUREMICROSCOPE") || (n=="DMM") || (n=="DMM020") || (n=="DMM040") || (n=="DMM060") || (n=="DMM100") || (n=="DMM150") || (n=="DMM200") || (n=="DMM300") || (n=="MLM2") || (n=="MLM4") || (n=="MLM6") || (n=="MLM10") || (n=="MLM15") || (n=="MLM20") || (n=="MLM30") || (n=="DMMUSBL020") || (n=="DMMUSBL040") || (n=="DMMUSBL060") || (n=="DMMUSBL100") || (n=="DMMUSBL150") || (n=="DMMUSBL200") || (n=="DMMUSBL300") || (n=="DMMUSBB020") || (n=="DMMUSBB040") || (n=="DMMUSBB060") || (n=="DMMUSBB100") || (n=="DMMUSBB150") || (n=="DMMUSBB200") || (n=="DMMUSBB300") || (n=="DMMUSBL") || (n=="DMMUSBB"))
	return ("depth_measure_microscope.htm");

//USB MACRO MEASURE
if ((n=="USBMACROMEASURE")||(n=="UMM10409")||(n=="UMM10410")||(n=="UMMOBJ007")||(n=="UMMOBJ010")||(n=="UMMOBJ020")||(n=="UMMOBJ030")||(n=="UMMOBJ040")||(n=="UMMOBJ050")||(n=="UMMOBJ100"))
	return ("usb_macro_measure.htm");

//SLITTE
if ((n=="SLIMAR000206")||(n=="SLIMAR000207")||(n=="SLIMAR000208")||(n=="SPTTES000381")||(n=="SLIOVT000438")||(n=="SPTOVT000553"))
	return ("slitte.htm");

//VIDEO OPTIC CBLS
if ((n=="CBLSVO10433")||(n=="VIDEOOPTICCBLS")||(n=="CBLS"))
	return ("video_cbls.htm");

//OPTIC&VIDEO COLLIMATOR
if ((n == "VOC10435") || (n=="COLLIMATORE") || (n=="VIDEOCOLLIMATORE") || (n=="VIDEOCOLL") || (n=="VIDEOCOLLIMATOR") || (n=="COLLIMATOR"))	
	return ("videocoll.htm");

//2034-2054USB
if ((n == "2034USB")||(n == "2054USB"))
	return ("2034-2054usb_p01.htm");

if ((n == "2034020USBL")||(n == "2034040USBL")||(n == "2034060USBL")||(n == "2034100USBL")||(n == "2034150USBL")||(n == "2034200USBL")||(n == "2034300USBL"))
	return ("2034-2054usb_p02.htm");
if ((n == "2034040USBLC")||(n == "2034060USBLC")||(n == "2034100USBLC")||(n == "2034150USBLC")||(n == "2034200USBLC")||(n == "2034300USBLC"))
	return ("2034-2054usb_p02.htm");
if ((n == "2034020USBB")||(n == "2034040USBB")||(n == "2034060USBB")||(n == "2034100USBB")||(n == "2034150USBB")||(n == "2034200USBB")||(n == "2034300USBB"))
	return ("2034-2054usb_p02.htm");
if ((n == "2034040USBBC")||(n == "2034060USBBC")||(n == "2034100USBBC")||(n == "2034150USBBC")||(n == "2034200USBBC")||(n == "2034300USBBC"))
	return ("2034-2054usb_p02.htm");
	
if ((n == "2054020USBL")||(n == "2054040USBL")||(n == "2054060USBL")||(n == "2054100USBL")||(n == "2054150USBL")||(n == "2054200USBL")||(n == "2054300USBL"))
	return ("2034-2054usb_p02.htm");
if ((n == "2054040USBLC")||(n == "2054060USBLC")||(n == "2054100USBLC")||(n == "2054150USBLC")||(n == "2054200USBLC")||(n == "2054300USBLC"))
	return ("2034-2054usb_p02.htm");
if ((n == "2054020USBB")||(n == "2054040USBB")||(n == "2054060USBB")||(n == "2054100USBB")||(n == "2054150USBB")||(n == "2054200USBB")||(n == "2054300USBB"))
	return ("2034-2054usb_p02.htm");
if ((n == "2054040USBBC")||(n == "2054060USBBC")||(n == "2054100USBBC")||(n == "2054150USBBC")||(n == "2054200USBBC")||(n == "2054300USBBC"))
	return ("2034-2054usb_p02.htm");

if ((n == "2034USBL")||(n == "2034USBB"))
	return ("2034-2054usb_p02.htm");

if ((n == "ML2")||(n == "ML4")||(n == "ML6")||(n == "ML10")||(n == "ML15")||(n == "ML20")||(n == "ML30")||(n == "ME2")||(n == "ME4")||(n == "ME6")||(n == "ME10")||(n == "ME15")||(n == "ME20")||(n == "ME30")||(n == "MEX"))
	return ("2034-2054usb_p02.htm");

return ("#");			// PAGINA NON ESISTENTE
}
