//default JavaScript

//toggle style display property
function toggleProp(eid, thisval, thatval) {
	document.getElementById(eid).style.display = (document.getElementById(eid).style.display == thisval) ? thatval : thisval;
}

