function ChangeResourceInformation(documentId, localString)
{
	var resourceInformation = document.getElementById("languages" + documentId).item(document.getElementById("languages" + documentId).selectedIndex).value;											
	document.getElementById(documentId + "_downloadLink").innerText = localString + " " + resourceInformation.split("*")[1].toUpperCase() ; //"Changed"; 
	document.getElementById(documentId + "_resourceSize").innerText = resourceInformation.split("*")[2];
	document.getElementById(documentId + "_downloadImage").src = resourceInformation.split("*")[3];
}