// JavaScript Document

//startList = function(nav_root) {
function startList() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("nav-l1");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}
//window.onload=startList;

function openwin(url) 
{ 
  var wn = window.open(url,'db','toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,width=800,height=600,resizable=yes,left=0,top=0');
  wn.focus();
}

function openwina(url,name){ 
  var wn = window.open(url,name,'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,width=700,height=400,resizable=yes,left=0,top=0');
  wn.focus();
}

