/**
 * (c) Orange Webdesign - Robert Kemmeter. All rights reserved.
 * www.orange-webdesign.com
 */

function bh2HighlightInput (e, opt) {

	if ( typeof e.className.contains == 'function' && e.className.contains('invalid',' ' ) )
		return

	else  {
			
		if (opt == 1) {
			e.style.borderColor = '#74A23B';
			e.style.backgroundColor = '#DDE8CF';
		}
		else {
			e.style.borderColor = '#DDE8CF';
			e.style.backgroundColor = 'transparent';
		}
	}
}