////////////////////////////////////////////////////////////////////// 
// function toggle ( element_id, visibility );						//
//////////////////////////////////////////////////////////////////////
// This function allows any element to be shown or hidden with the	//
// onClick tag attribute. 											//
function toggle(_id,_vis) {
	if ( _vis == 'show') {
		document.getElementById(_id).style.display='inline';
	} else if ( _vis == 'hide'){
		document.getElementById(_id).style.display='none';
	} 
	return true;
}
//////////////////////////////////////////////////////////////////////