﻿function noway(go) {
	if (document.all) {
		if (event.button == 2) {
			alert("Copyright © 2009 Veronica's");
			return false;
		}
	}
	if (document.layers) {
		if (go.which == 3) {
			alert("Copyright © 2009 Veronica's");
			return false;
		}
	}
}
if (document.layers) {
	document.captureEvents(Event.MOUSEDOWN);
} document.onmousedown=noway;

function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
}

function fCheck(v1){
if (v1 == "0"){
alert("Favor selecionar uma opção!");
return false
}else{
return true
}
}

function clearfield(inputfield){ 
  if (inputfield.defaultValue==inputfield.value) 
  inputfield.value = ""; 
 } 
