function SetTooltip(id)
{
	obj = document.getElementById("tooltip");
	if (id==0) { obj.innerHTML = "&nbsp;"; }
	if (id==1) { obj.innerHTML = "Upload documents and archives in various formats"; }
	if (id==2) { obj.innerHTML = "Upload wallpapers and personal pictures"; }
	if (id==3) { obj.innerHTML = "Upload audio clips, podcasts and music"; }
}

function SwitchBox(id)
{
	var itemText = document.getElementById('text_' + id);
	var itemImage = document.getElementById('image_' + id); 

	if (itemText.style.display == 'none') {
  		itemText.style.display = 'block';
  		itemImage.src = 'images/minus.gif';
	}
	else {
  		itemText.style.display = 'none';
  		itemImage.src = 'images/plus.gif';
	}
}
function CheckPasswords()
{
	var passOriginal = document.getElementById('password_original');
	var passRepeat = document.getElementById('password_repeat');
	var textMessage = document.getElementById('textPassword');
	if (passOriginal.value != passRepeat.value) {
		textMessage.innerHTML = "Passwords <strong>DO NOT</strong> match.";
	}	else {
		textMessage.innerHTML = "&nbsp;";
	}
}

function Highlight(element) 
{
	var field = document.getElementById(element);
  field.focus();
  field.select();
}