// JavaScript Document

//Contact page checkbox toggle *
	function toggle(spanid){
		if(document.getElementById(spanid).style.marginLeft == '0pt' || document.getElementById(spanid).style.marginLeft == '0px'){
			document.getElementById(spanid).style.marginLeft = '-1000pt';
		}
		else{
			document.getElementById(spanid).style.marginLeft = 0;
		}
	}
	

// Char Count
function textCounter(field,cntfield,maxlimit) {
if (field.value.length > maxlimit) // if too long...trim it!
field.value = field.value.substring(0, maxlimit);
// otherwise, update 'characters left' counter
else
cntfield.value = maxlimit - field.value.length;
}


