//onerror = report;

function report() {
	return true;
}

function switchDiv(elementId, bolVisible,row) {
	if(row == '') { row=0; }
	if( document.getElementById ) { var theElement = document.getElementById(elementId); } else {
	if( document.all ) { var theElement = document.all[ elementId ]; } else { var theElement = new Object(); } }
	if( !theElement ) { return; }
	if( theElement.style ) { theElement = theElement.style; }
	if( typeof( theElement.display ) == 'undefined' && !( window.ScriptEngine && ScriptEngine().indexOf( 'InScript' ) + 1 ) ) { window.alert( 'Hidden navigation will not work in this browser' ); return; }
	if (bolVisible == true) {
		if (row == 0) {
		theElement.display = 'block';
		}
				
		if(row == 2)
		{
			if(browser == 'Internet Explorer')
			{
				theElement.display = 'block';
			} else {
				theElement.display = 'table';
			}
		
		}
		
		if(row == 1)
		{
			if(browser == 'Internet Explorer')
			{
				theElement.display = 'block';
			} else {
				theElement.display = 'table-row';
			}
		}
		
	} else {
		theElement.display = 'none';
	}
}
