
function viewDrop(dsplyVal){
	if(dsplyVal == 'show')
	{
		document.getElementById("viewDrop").className = 'viewDropShow';
	}
	else 
	{
		document.getElementById("viewDrop").className = 'viewDropHide';
	}
}


function viewAll(dsplyVal) {
	if(dsplyVal == 'show') {
		document.getElementById("viewAll").className = 'viewAllShow';
		hdDrops('numberlistings');
	} else {
		document.getElementById("viewAll").className = 'viewAllNone';
		shwDrops('numberlistings');
	}
	
}


