var search_box_default_color;
var search_box_default_str = '';

function clear_search_box() {
    var search_box = document.getElementById( 'search_box' );
    if ( search_box.style.color == search_box_default_color || search_box_default_str == '' ) {
    search_box_default_str = search_box.value;
	search_box.value = "";
	search_box_default_color = search_box.style.color;
	search_box.style.color = "#000000";
    }

}
function set_search_box() {
    var search_box = document.getElementById( 'search_box' );
    if ( search_box.value=="" ) {
	search_box.value = search_box_default_str;
	search_box.style.color = search_box_default_color;
    }
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


function openNew(html,name,size){
newWin = open(html,name,size);
newWin.focus()
}

