// JavaScript Document
function clearText(thefield){
	if (thefield.value=="")
	thefield.value = thefield.defaultValue
	} 
	
function fillText(thefield){
	if (thefield.value == thefield.defaultValue)
	(thefield.value="")
	} 
	
	

function HideDiv(DivId){
	
	var findDiv = document.getElementById(DivId)
	
	if(findDiv!=null)findDiv.style.display="none" //hide Div
	
}

function UnHideDiv(DivId){
	
	var findDiv =document.getElementById(DivId)
	
    if(findDiv!=null)findDiv.style.display="block" //hide Div
}