function GoogleView(arg1,arg2,arg3,arg4,arg5) {
	thePage="/onde/default.aspx?accao="+arg5+"&regiao="+arg4+"&distrito="+arg3+"&lat="+arg1+"&long="+arg2
	window.location=thePage;

	//thePage="/lojas/mapa.aspx?lat="+arg1+"&long="+arg2
	//window.open(thePage,'nova','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=500,height=510')
	}

function ValidarDistrito(source, arguments) {
	if (document.form1.ListboxDistrito.selectedIndex == 0) {
		arguments.IsValid = false
	} else {
		arguments.IsValid = true
	}
}

function ValidarMarca(source, arguments) {
	if (document.form1.ListboxMarcas.selectedIndex == 0) {
		arguments.IsValid = false
	} else {
		arguments.IsValid = true
	}
}

function ValidarModelo(source, arguments) {
	if (document.form1.ListboxModelos.selectedIndex == 0) {
		arguments.IsValid = false
	} else {
		arguments.IsValid = true
	}
}

function ValidarVersao(source, arguments) {
	if (document.form1.ListboxVersoes.selectedIndex == 0) {
		arguments.IsValid = false
	} else {
		arguments.IsValid = true
	}
}

function ValidarStand(source, arguments) {
	if (document.form1.cboStand.selectedIndex == 0) {
		arguments.IsValid = false
	} else {
		arguments.IsValid = true
	}
}
