// **** SEARCH ****
document.qsearch= '';

// **** NAVIGATION ****
document.nav_mark_bg= '#93a7c6';//'#91A5C4';//'#839ABC';
document.nav_notmark_bg= '#abbbd2';
document.nav_selected_bg= '#cccccc';

function mark_nav( row){
	//alert(document.getElementById(row).bgColor);
	if( document.getElementById(row).bgColor != document.nav_selected_bg)
		document.getElementById(row).bgColor= document.nav_mark_bg;
}
function unmark_nav( row){
	if( document.getElementById(row).bgColor != document.nav_selected_bg)
		document.getElementById(row).bgColor= document.nav_notmark_bg;
}

// **** LINKING ****
function openExternWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
}

