function languageChange(type){
	window.location = type.value;

	return false;	
}

function cleartext(text) {
	if (text.value == text.defaultValue) {
		text.value = ""
	}
}

function replace_text(text) {
	if (text.value == "") {
		text.value = text.defaultValue
	}
}
