
function showDate(){
var date, months, month, day, year;
date=new Date();
months=new Array('Jan.', 'Feb.', 'March', 'April', 'May', 'June', 'July', 'August', 'Sept.', 'Oct.', 'Nov.', 'Dec.');
month=date.getMonth();
month=months[month];
day=date.getDate();
year=date.getFullYear();
date=month+" "+day+", "+year;
document.write("<span style='font-weight:bold;font-size:9pt;'>"+date+"</span>");
}


function linkOver(node){
node.style.backgroundColor="#ffcc33";
node.style.border="1px solid red";
node.style.fontSize="8pt";
node.style.cursor="pointer";
}

function linkOut(node){
node.style.backgroundColor="#ffffff";
node.style.fontWeight="400";
node.style.border="0px solid red";
node.style.fontSize="8pt";
node.style.borderBottom="1px dotted #000066";
}

function linkOver_alt(node){
node.style.backgroundColor="#ffcc33";
node.style.border="1px solid red";
node.style.fontSize="8pt";
node.style.cursor="pointer";
}

function linkOut_alt(node){
node.style.fontWeight="400";
node.style.backgroundColor="#ffcc33";
node.style.border="1px solid red";
node.style.fontSize="8pt";
node.style.cursor="pointer";
}




function banquet(){
window.close();
window.open('banquet.html','newwin2','width=640,height=480,top=20,left=20');

}



// onLoad full screen
function maximizeWin() {
  if (window.screen) {
    var aw = screen.availWidth;
    var ah = screen.availHeight;
    window.moveTo(0, 0);
    window.resizeTo(aw, ah);
  }
}

//dynamic position popupwin
function ballot() {
if (parseInt(navigator.appVersion)>3) {
	 if (navigator.appName=="Netscape") {
	var xSet=(xOffset-650)/2, ySet=((yOffset-400)/2-40);
	window.open('capmtg.htm','ballot','width=650,height=400,left='+xSet+', top='+ySet+',scrollbars=yes, menu=no, status=no, resizable=yes'); 

 	}

	if (navigator.appName.indexOf("Microsoft")!=-1) {
	var xOffset=window.screen.width, yOffset=window.screen.height;
	var xSet=(xOffset-650)/2, ySet=((yOffset-400)/2-40);
	window.open('capmtg.htm','ballot','width=650,height=400, left='+xSet+', top='+ySet+',scrollbars=yes, menu=no, status=no, resizable=yes');

 	}
     }
}



