// JavaScript Document
function doClear(theText){
	if (theText.value == theText.defaultValue){
		theText.value = "";
	}
}
function set_value(str){
	if(str.value=="")
		str.value="Brukernavn";
}
function set_value1(str){
	if(str.value==""){
		document.getElementById('password1').style.display="";
		document.getElementById('password').style.display="none";
	}
}
function change_pass(){

	document.getElementById('password1').style.display="none";
	document.getElementById('password').style.display="";
	document.getElementById('password').focus();

}
