// Script Library By: Michael A. Karr




// Clear Text Field
function clearField(el) {
  if (el.defaultValue==el.value) el.value = ""
}

// Change Status Message
function showStatus(sMsg) {
    window.status = sMsg ;
    return true ;
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}