//--------------------------------------------------------------------------------------
function formValidate(fieldId)
{

}
//--------------------------------------------------------------------------------------
function formFocus(fieldId)
{
	fieldId.style.background="#FF7761";
	fieldId.style.color="#FFFEB3";
}
//--------------------------------------------------------------------------------------
function formBlur(fieldId)
{
	fieldId.style.background="#FFFEB3";
	fieldId.style.color="#993300";
}
//--------------------------------------------------------------------------------------
function showme(id)
{
	if(document.getElementById)
		document.getElementById(id).style.visibility='visible';
	else if(document.layers) 
        	document.layers[id].style.visibility='visible';
    	else if(document.all)
		document.all[id].style.visibility='visible';
}
//--------------------------------------------------------------------------------------
function hideme(id)
{
	if(document.getElementById)
		document.getElementById(id).style.visibility='hidden';
	else if(document.layers) 
        	document.layers[id].style.visibility='hidden';
    	else if(document.all)
		document.all[id].style.visibility='hidden';
}
//--------------------------------------------------------------------------------------
function back(id, colour)
{	
	if(document.getElementById) 
        	document.getElementById(id).style.backgroundColor = colour;
    	else if(document.layers) 
        	document.layers[id].bgcolor = colour;
    	else if(document.all) 
        	document.all[id].style.background = colour;
}
//--------------------------------------------------------------------------------------
