window.onerror = function() {
	return true;
};

function resizeFooter(){
	if( document.body.clientWidth > 1024 ){
		document.getElementById( 'footerField' ).style.width	= '1047px';
		document.getElementById( 'backField' ).style.width = document.body.clientWidth + 'px';
	}else
		document.getElementById( 'backField' ).style.display = 'none';
}