/* Copyright OHA. ALL RIGHTS RESERVED */
// JavaScript Document
	
// CLEAR SEARCH TEXT
function clearText(thefield){if (thefield.defaultValue==thefield.value)thefield.value = ""}

// OPEN-CLOSE
function OpenClose(Event) {
	var div = document.getElementById(Event);
	if (div.style.display != 'none' ) {
		div.style.display = 'none';
		}
	else {
		div.style.display = '';
		}
}
// OPEN-CLOSE-DRAG - Goes along with jquery.dragdrop.js
function OpenCloseDrag(Event,Drag) {
	var div = document.getElementById(Event);
	if (div.style.display != 'none' ) {
		div.style.display = 'none';
		$(Drag).ppdrag("destroy");
		}
	else {
		div.style.display = '';
		$(document).ready(function(){$(Drag).ppdrag({zIndex:1000});});
		}
}


//-->
