// JavaScript Document

function setBackground(){ 
	if (screen.width<=1600) {
		document.body.background='images/bg1920.jpg';
	}
	if (screen.width>=1280) {
		document.body.background='images/bg1500.jpg';
	}
	else {
		document.body.background='images/bg1280.jpg';
	}
} 

function excluir(url) {
	if( confirm("Deseja realmente excluir este registro?") ) {
		document.location = url;
	}
	
}
