// --------------------------------------------------------------------------------------------------------------

function protect(sLang) 
{
	var sMessage = "";
	
	switch(sLang)
	{
		case "EN":
			sMessage = "Go to the STORE section to buy pictures and multimedia. Thank you.";
			break;

		default:
			sMessage = "Per acquistare immagini ed altro materiale multimediale visitare la sezione STORE. Grazie.";
			break;
	}

	alert(sMessage);
		
	return false;
}

// --------------------------------------------------------------------------------------------------------------

