/******************************************************/
/*                                                    */
/*  :: Author: Harvey Chow - HC DESIGNS               */
/*  :: E-mail: info@hcdesigns.nl                      */
/*                                                    */
/*  This configuration file was created by HC DESIGNS */
/*  Under no circumstances may this file be copied    */
/*  or changed by unauthorized users.                 */
/*                                                    */
/*  This website is copyrighted by the client named:  */
/*                 -----------------                  */
/*                 www.hopintung.com                  */
/*                 -----------------                  */
/*                                                    */
/*                                                    */
/*  :: Date: December 9, 2004                         */
/*                                                    */
/******************************************************/

function menuStatus(menuObject,status) {
	var activeStatus = "#330000";
	var inactiveStatus = "";
	
	if(status == "active") {
		menuObject.style.backgroundColor = activeStatus;
	}
	else if(status == "inactive") {
		menuObject.style.backgroundColor = inactiveStatus;
	}
}

function checkForm() {
	if(document.contact.name.value == '') {
		alert("Please fill in a name.");
	}
	else if(document.contact.email.value == '') {
		alert("Please fill in an e-mail address.");
	}
	else if(document.contact.message.value == '') {
		alert("Please fill in a message.");
	}
	else {
		document.contact.submit();
	}
}

function newsOver(newsItem) {
	newsItem.style.backgroundColor = '#E0E0E0';
	newsItem.style.color = '#660000';
}

function newsOut(newsItem) {
	newsItem.style.backgroundColor = '';
	newsItem.style.color = '';
}