		function changeBox() 
		{
		  document.getElementById('div1').style.display='none';
		  document.getElementById('password').style.display='';
		  document.getElementById('password').focus();
		}
		function restoreBox() 
		{
			if(document.getElementById('password').value=='')
			{
			  document.getElementById('div1').style.display='';
			  document.getElementById('password').style.display='none';
			}
		}
		
		function doClear(theText) {
			 if (theText.value == theText.defaultValue) {
				 theText.value = ""
			 }
 		}
		
		function doRestore(theText) {
			 if (theText.value == "") {
				 theText.value = theText.defaultValue
			 }
 		}
		
		
		
		
		function doClear(theText) {
			 if (theText.value == theText.defaultValue) {
				 theText.value = ""
			 }
 		}
		
		function doRestore(theText) {
			 if (theText.value == "") {
				 theText.value = theText.defaultValue
			 }
 		}
		
		
		function doClearText(theText) {
			 if (theText.value == theText.defaultValue) {
				 theText.value = "";
				 theText.style.color = "#000000";
				 
			 }
 		}
		
		function doRestoreText(theText) {
			 if (theText.value == "") {
				 theText.value = theText.defaultValue;
				 theText.style.color = "#cccccc";
			 }
 		}