//--------------------------------------------------------------------------------
// Qwentès Italia SRL 	: http://www.qwentes.it
//--------------------------------------------------------------------------------
String.prototype.localize = function(){
	var retVal = (LocalizedStrings && LocalizedStrings[this]) ? LocalizedStrings[this] : '[translate] ' + this;
	return retVal;
}