// JavaScript Document

// makes div visible / hidden

function toggleDiv(strShow) {
	 
	if ($("#" + strShow).css("display") == "none") {
		$("#" + strShow).show("slow");
	} else {
		$("#" + strShow).hide("slow");
	} 
}