function rider(oneid, otherid) {
	if (ElementByID(oneid).style.display == 'none') 
	{ 
	ElementByID(oneid).style.display = ''; 
	ElementByID(otherid).style.display = 'none'; 
	} 
	else 
	{
	ElementByID(oneid).style.display = 'none';
	}
return null;
}

function rider1(oneid) {
	if (ElementByID(oneid).style.display == 'none') 
	{ 
	ElementByID(oneid).style.display = '';  
	} 
	else 
	{
	ElementByID(oneid).style.display = 'none';
	}
return null;
}
