//<script>
// Clears a textbox of any default "accessibility" text on focus
function clearText(textBoxID,defaultVal){
	if (document.getElementById(textBoxID).value == defaultVal) document.getElementById(textBoxID).value = '';
}

// Checks for enter key being pressed and fires the click event for the specified button
function clickOnEnter(buttonID){
	if (((document.all)?window.event.keyCode:event.which) == 13){
		document.getElementById(buttonID).click(); 
		return false;
	} else {
		return true;
	}
}

// Standard function to open pages in a new window
function OpenWindow(URL, name, width, height) {
window.open(URL,name,"scrollbars=yes,width=800,height=600" );
}
