var addthis_config = {ui_cobrand: "Har: Obscura", ui_header_color: "#FFFFFF", ui_header_background: "#3399FF"}

function lightON(myID) {
	//myID.style.backgroundColor 	= "#ff9900";
	myID.style.backgroundColor 		= "#EF8259";
	myID.childNodes[0].style.color	= "#ffffff";
	myID.style.cursor 				= "pointer";
	
}
function lightOFF(myID) {
	myID.style.backgroundColor 		= "#000000";
	myID.childNodes[0].style.color	= "#05C5EE";
	
}
function getNavURL(myID) {
	self.location.href = myID.childNodes[0].getAttribute('href');
}

function valContact(formID) {
	var empties = "";
	
	if (formID.contactName.value.length == 0) {
		empties = "- Your Name\n";
	}
	if (formID.contactEmail.value.length == 0) {
		empties += "- Your Email Address\n";
	}
	if (formID.antibot.value.length == 0) {
		empties += "- SPAM Bot Test\n";
	}	
	
	if (formID.contactMSG.value.length == 0) {
		empties += "- Your Message\n";
	}
	
	if (empties.length > 0) {
		var errMSG = "Sorry! All form fields must be filled in.\n\nPlease fill in the following:\n\n" + empties;
		alert(errMSG);
		return false;
	}
	
}
