/* switch visibility */

function switchvis(strID) {
	if (document.getElementById(strID).style.display == 'block') {
		document.getElementById(strID).style.display = 'none';
	} else {
		document.getElementById(strID).style.display = 'block';
	}
}

/* show/hide functions */

/* function show(strID) {
	document.getElementById(strID).style.display = 'block';
}
function hide(strID) {
	document.getElementById(strID).style.display = 'none';
} */

// Paul S mods to the show/hide funcs .. using Ajax now! //

function showElement(strID) {
	$(strID).setStyle("display", "block");
}
function hideElement(strID) {
	$(strID).setStyle("display", "none");
}

// Quick fix to stretch the contact form after user has select contact type //
function stretchDiv(strID) {
	var QVerticalSlide = new Fx.Slide(strID).show();	
}


/* show/hide tooltips */

function showtip(elemID) {
	document.getElementById(elemID).style.display = 'block';
}

function hidetip(elemID) {
	document.getElementById(elemID).style.display = 'none';
}

