

// ------------------

function rssSwitch(div1, div2, actual) {
	div1Element = document.getElementById(div1);
	div2Element = document.getElementById(div2);
	if (actual == 1) {
		div2Element.style.display = 'none';
		div1Element.style.display = '';
	} else {
		div1Element.style.display = 'none';
		div2Element.style.display = '';
	}
}

// ----------------------------
// Function for Form Fields with the label in the field itself
function RPPclearText(el) {
	if (el.defaultValue == el.value) el.value = "";
}
  
function RPPrestoreText(el) {
	if (el.value == "") el.value = el.defaultValue;
}

// ---------------------------------

