/* Created by: Alf Magne Kalleland :: www.dhtmlgoodies.com (C) www.dhtmlgoodies.com, November 2005 */
var currentlyActiveInputRef = false;
var currentlyActiveInputClassName = false;
function highlightActiveInput() {
// if(currentlyActiveInputRef) {
// alert("running");
// currentlyActiveInputRef.className = currentlyActiveInputClassName;
// }
currentlyActiveInputClassName = this.className;
this.className = 'inputHighlighted';
currentlyActiveInputRef = this;
}
function highlightActiveInput2() {
if(currentlyActiveInputRef) {
currentlyActiveInputRef.className = currentlyActiveInputClassName;
}
currentlyActiveInputClassName = this.className;
this.className = 'inputHighlighted2';
currentlyActiveInputRef = this;
}
function blurActiveInput() {
this.className = currentlyActiveInputClassName;
}
function initInputHighlightScript() {
var tags = ['INPUT','TEXTAREA'];
for(tagCounter=0;tagCounter