window.onerror = null;

function NotesModelsLoading(){
	document.getElementById('notemodels').innerHTML = '<select disabled><option value="">загрузка данных...</select>';
}

function ChangeProductImage( id, img ){
	document.getElementById('product'+id).src = img;
}

function switchVisible( off, on ){
	document.getElementById( off ).style.display = 'none';
	document.getElementById( on ).style.display = 'block';
}

function expandOFF(){
	var elements = document.getElementsByTagName( 'img' );
	for( var i = 0; i < elements.length; i++ ){
		if( 'expand-a' == elements[i].className ){
			elements[i].className = 'expand';
		}
	}
}

function expandON( id ){
	if( 'expanded' != document.getElementById( 'expand' + id ).className ){
		document.getElementById( 'expand' + id ).className = 'expand-a';
	}
}
	
function expandList( id ){
	if( 'expand-a' == document.getElementById( 'expand' + id ).className ){
		document.getElementById( 'content' + id ).style.display = 'block';
		document.getElementById( 'expand' + id ).className = 'expanded';
	}else{
		document.getElementById( 'content' + id ).style.display = 'none';
		document.getElementById( 'expand' + id ).className = 'expand-a';
	}
}


