<!--//<![CDATA[
startList=function() {
	if(document.all&&document.getElementById) {
		var ul_array=document.getElementsByTagName("ul");
		for(i=0;i<ul_array.length;i++) {
			if(hasClass(ul_array[i],"nav_top")) {
				setList(ul_array[i]);
			}
			if(hasClass(ul_array[i],"nav_left")) {
				setList(ul_array[i]);
			}
		}
	}
}
window.onload=startList;

function setList(list) {
	var items = list.getElementsByTagName("li");
	for(k=0;k<items.length;k++) {
		items[k].onmouseover=function() {
			addClass(this,"over");
		}
		items[k].onmouseout=function() {
			removeClass(this,"over");
		}
	}
}

//function library
function id(id) {return document.getElementById(id);}
function addClass(t,c){var p=new RegExp("(^| )"+c+"( |$)");if(!p.test(t.className)){if(t.className =="")t.className=c;else t.className+=" "+c;}return true;}
function removeClass(t,c){var r=t.className;var p=new RegExp("(^| )"+c+"( |$)");r=r.replace(p,"$1");r=r.replace(/ $/,"");t.className=r;return true;}
function hasClass(t,c){var p=new RegExp("(^| )"+c+"( |$)");return p.test(t.className);}
function ieVersion(){ieVersion=-1;if(navigator.appVersion.indexOf("MSIE")!=-1){var tempNavigatorString=navigator.appVersion.split("MSIE");ieVersion=parseFloat(tempNavigatorString[1]);}	return ieVersion;}


// Netscrape 4
if (document.layers) {var NN4 = true;}
// var NN4 = (document.layers) ? true : false

// IE
if (document.all) {var IE = true;}
// var IE = (document.all) ? true : false

// DOM
if (document.getElementById && !document.all) {var DOM = true;}
// var DOM = (document.getElementById && !document.all) ? true : false

function getElement(id){
	
		if(NN4) {
			path = document.layers[id]
		} else if(IE) {
			path = document.all[id]
		} else {
			path = document.getElementById(id)
		} 
		//return the path to the css layer depending upon the browser type
		return path; 
}

function winopen(url,name,args) {
var newWin;
newWin = window.open(url,name,args);
}

function prePrint()
{
if (window.print) window.print();
else alert('This script does not work in your browser. Go to the file menu and choose "print" to print this page.');
}

	function emailLink() {
	
		var agree = confirm('IMPORTANT! Attorney - Client Relationship:\n\nUse of the Coblentz, Patch, Duffy & Bass LLP web site does not create an attorney-client relationship between you and the attorneys at Coblentz, Patch, Duffy & Bass. If you send us an e-mail and we do not already represent you, your e-mail will not create an attorney-client relationship and will not necessarily be treated as privileged or confidential, and this firm does not have any obligation to respond to your inquiry (whether by email or otherwise). If you are not already a client of our firm and you do not receive a timely response to your e-mail, you should seek legal counsel from another source.')
		return agree
	}

//]]>-->