 // Pop-Ups ++

 // **  Toolbar  **
var CMWindow = null;

function WindowToolbar(url,width,height) {
	if (CMWindow == null) {
		CMWindow = open(url,"Destination","toolbars=0,statusbar=0,menubar=0,scrollbars=1,resizable=1,width="+width+",height="+height+",top=100,left=100");
	}
	else {
		CMWindow = open("", "Destination");
		CMWindow.close();
		CMWindow = open(url,"Destination","toolbars=0,statusbar=0,menubar=0,scrollbars=1,resizable=1,width="+width+",height="+height+",top=100,left=100");
	}
}

 // **  Toolbar 2 **
function WindowToolbar1(url,width,height) {
  CMWindow=open(url,"Destination1","toolbars=0,statusbar=0,menubar=0,scrollbars=1,resizable=1,width="+width+",height="+height+",top=100,left=100");
  if (CMWindow.focus != null) {
    CMWindow.focus()
  }
}


// Toolbar popup
function swapPic(whichPic,whichSrc){
	if (document.images) {
		document.images[whichPic].src = whichSrc
	}
}



function navMenuOver(a_name) {
  if (document.all) {
    a_name.style.backgroundColor='#E5EAEF';
    a_name.style.borderColor='#779ABC';
    a_name.style.borderWidth='1px';
    a_name.style.borderStyle='solid';
    a_name.style.cursor='hand';
  }
}
function navMenuOut(a_name) {
  if (document.all) {
    a_name.style.backgroundColor='#FFFFFF';
    a_name.style.borderColor='#FFFFFF';
    a_name.style.cursor='default';
  }
}
