function formHandler(form){
if(document.quicknav.page.options[document.quicknav.page.selectedIndex].value != "")
	{
	var URL = document.quicknav.page.options[document.quicknav.page.selectedIndex].value;
	window.location.href = URL;
	}
}

var url="http://www.alliancebestpractice.com";
var title="AllianceBestPractice - Strategic Alliance Best Practice";

function favorites(){
if(document.all)
window.external.AddFavorite(url,title)
}

startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
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;


// Get current date
var now = new Date();

// List the days
var days = new Array('Sunday','Monday','Tuesday','Wednesday',
                      'Thursday','Friday','Saturday');

// List the months
var months = new Array('January','February','March','April',
                         'May','June','July','August','September',
                            'October','November','December');

// What day number is it
var date = ((now.getDate()<10) ? "0" : "")+ now.getDate();

// Convert year to four figure format
function y2k(number){return (number < 1000) ? number + 1900 : number;}

// Join it all together
today =  days[now.getDay()] + " " +
              date + " " +
               months[now.getMonth()] + ", " +
                (y2k(now.getYear())) ;

function resetquicknav()
    {
        document.quicknav.page.options[0].selected = true;
        return;
    }

function popUp(url) {
  newWindow=window.open(url, 'windowNew', 'width=500,height=550,status=no,toolbar=no,scrollbars=yes,menubar=no,screenX=230,screenY=80,left=230,top=80');
}
