<!--

function setBackground(section) {
	var newBack;
	var XX = screen.width;
	var YY = screen.height; 
	var obj;
	var pre = "";
	pre = "images/background_56_";
	var size;
	obj = document.body;
	if (obj) {		
		//alert("Width: " + XX + ", Height: " + YY);
		if (XX==640 && YY==480) { size = "640x480";	}
		else if (XX==800 && YY==600) { size = "800x600"; }
		else if (XX==1024 && YY==768) { size = "1024x768"; }
		else if (XX>=1280 && YY>=1024) { size = "1280x960"; }
		else { size = "800x600"; }
		size = "1024x768";
		newBack = pre + size + ".jpg";		
		//alert(newBack);
		obj.background = newBack;
	}
}

/*********************************************************************************/

function menuButton(button,type,message) {
	var thisButton;
	var thisMessage;
	var initialMessage;
	var messageArea;
	thisButton = document.getElementById(button);
	thisMessage = document.getElementById(message);
	initialMessage = document.getElementById('messageInitial');
	messageArea = document.getElementById('messageArea');
	if (type=='Over') {
	    thisButton.style.backgroundColor = 'BBBBBB';
		thisButton.style.color = 'FFFFFF';
		//messageArea.style.display = 'inline';
		thisMessage.style.display = 'inline';
	}
	else if (type=='Out') {
		thisButton.style.backgroundColor = '4887B3';
		thisButton.style.color = 'FFFFFF';
		//messageArea.style.display = 'none';
		thisMessage.style.display = 'none';
	}
}

/*********************************************************************************/

function hideMessages()
{
	document.getElementById('messagePortfolio').style.display = 'none';
	document.getElementById('messageProjects').style.display = 'none';
	document.getElementById('messageAbout').style.display = 'none';
	document.getElementById('messageLinks').style.display = 'none';
	document.getElementById('messageContact').style.display = 'none';
}

/*********************************************************************************/

function openSlideShow(show_id) {
var URL;
URL = "slideShow.cfm?show_id=" + show_id;
	window.open(URL,'','width=450,height=450,toolbars=0,resize=0');
}

/*********************************************************************************/

function menuGo(destination) {
	window.self.location.href=destination;
}

/*********************************************************************************/

function checkContactForm() {
var obj;
obj = document.contactForm;
	if (obj.name.value=='') {
		alert ("You must enter your name!");
		obj.name.focus();
		return false;
	}
	else if (obj.phone.value=='') {
		alert ("You must enter your phone number!");
		obj.phone.focus();
		return false;
	}
	else if (obj.email.value=='') {
		alert ("You must enter your email address!");
		obj.email.focus();
		return false;
	}
	else if (obj.subject.value=='') {
		alert ("You must select the subject of your message!");
		obj.subject.focus();
		return false;
	}
	else if (obj.message.value=='') {
		alert ("You must enter a message!");
		obj.message.focus();
		return false;
	}
	else {
		return true;
	}
}

//-->