function showNv(object) {
//	if( eval(object) == 0 )
//	{
		document.getElementById(object).style.visibility = 'visible';
//		document.getElementById('floatDiv').innerText = 'hello';
//	}
//	eval(object + '++');

}
function hideNv(object) {
//	eval(object + '--');
//	if( eval(object) == 0 )
//	{
		document.getElementById(object).style.visibility = 'hidden';
//		document.getElementById('floatDiv').innerText = 'goodbye';
//	}

}
function showsubNv(object1,object2) {
	showNv( object1 );
	showNv( object2 );
}
function hidesubNv(object1,object2) {
	hideNv( object1 );
	hideNv( object2 );
}
