function selectOther () {
	var s = document.getElementById('amountother');
	s.checked = true;
};

function ColorChange(me) {
  	var r = document.getElementById(me);
	r.value='';
	r.style.color='#000000';
  }
  
  $.validator.setDefaults({
	submitHandler: function() {
		submit();
	}
});

$().ready(function() {	
	var container = $('div.container');
	// validate the form when it is submitted
	var validator = $("#Short").validate({
		errorContainer: container,
		errorLabelContainer: $("ol", container),
		wrapper: 'li',
		meta: "validate"
	});
	
	$(".cancel").click(function() {
		validator.resetForm();
	});  
});
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}