//function to toggle (with the anchor as show/hide button)
function toggle(id)
{
	var div = document.getElementById(id);
	if (div.style.display == 'none') 
		div.style.display = 'block';
	else 
		div.style.display = 'none';
}

//function to toggle with 'hide' and 'show' msg automatically displayed as button
function toggle_hide_show(div_id,a_id)
{
	var div = document.getElementById(div_id);
	var a = document.getElementById(a_id);
	
	a.style.letterSpacing = '0px';
	a.style.fontSize = '12px';
	a.style.textTransform = 'none';
	if (div.style.display == 'none')
	{
		a.innerHTML = 'hide';
		div.style.display = 'block';
	}
	else 
	{
		a.innerHTML = 'show';
		div.style.display = 'none';
	}	
}


//function to toggle with user created
//          hide and show msg displayed as button
function toggle_hide_show_newmsg(show_msg, hide_msg,div_id,a_id)
{
	var div = document.getElementById(div_id);
	var a = document.getElementById(a_id);
	
	a.style.letterSpacing = '0px';
	a.style.fontSize = '12px';
	a.style.textTransform = 'none';
	if (div.style.display == 'none')
	{
		a.innerHTML = hide_msg;
		div.style.display = 'block';
	}
	else 
	{
		a.innerHTML = show_msg;
		div.style.display = 'none';
		
	}	
}



/**************************************************************************************************** 
 *
 * VALIDATION
 * 
 *****************************************************************************************************/

















