function onImgError(source)
{
source.src = "/pictures/noimg.gif";
// disable onerror to prevent endless loop
source.onerror = "";
return true;
}

function Locale(str1, str2, lng) {
var Loc;
	switch (lng) {
		case "it":
			Loc = str1;
			break;
		case "en":
			Loc = str2;
			break;
	}
	return Loc;
}

function Buy(id, lang){
var w = 800;
var h = 700;

	var win2 = window.open("buy.asp?ver="+lang+"&id="+id,"NewWindow","toolbar=yes,directories=no,resizable=1,menubar=1,scrollbars=1,width="+w+",height="+h+",top=50,left=50")
}
