
//////////////////////////////////////////////////
//		STAMPA IL NOME DELLA PAGINA             //
//		lingua en,it							//
//		este estenzione del file .htm, .asp		//
//												//
//		richiamare:								//
//		lingua('en','.asp')						//
//////////////////////////////////////////////////

function lingua(lingua,este)
{
	var p;
	var l = location.href;
	var g = l.substr(l.lastIndexOf("/")+1).split(/[?#]/)[0];
	var h = g.substr(0,g.lastIndexOf("_")+1).split(/[?#]/)[0];
//	lingua = "it";
	//alert(h);
	if (h == 0){
		var b = g.substr(0,g.lastIndexOf(".")).split(/[?#]/)[0];
		if(lingua!="it"){
			p = b + "_" + lingua + este;
		}
		else {
			p = b + este;
			}
		}
	else {	
		if(h!="index_"){
			p = h + lingua + este;
		}
		else{
			if(lingua=="it"){

			p = "index.htm";
			}
			else{
				p = h + lingua + este;
				}
			}
	}
location.href = p;
}

