<!-- hide from old browsers

var days = new Array();
days[0] = "Sunday";
days[1] = "Monday";
days[2] = "Tuesday";
days[3] = "Wednesday";
days[4] = "Thursday";
days[5] = "Friday";
days[6] = "Saturday";

var months = new Array();
months[0] = "January";
months[1] = "February";
months[2] = "March";
months[3] = "April";
months[4] = "May";
months[5] = "June";
months[6] = "July";
months[7] = "August";
months[8] = "September";
months[9] = "October";
months[10] = "November";
months[11] = "December";


self.name = "main";
function openWin(width, height, imagewidth, imageheight, pic) {
        picWin = open("", "popup", "width=" + width + ",height=" + height + ",toolbar=yes,directories=no,status=no,location=no,scrollbars=yes,resizable=yes,menubar=no");
        picWin.document.open();
        picWin.document.clear();
        picWin.document.writeln("<html><head><title>Westwood</title></head><body bgcolor=\"#333366\" leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\"><table width=\"100%\" height=\"100%\" cellpadding=0 cellspacing=0 border=0><tr><td valign=\"middle\" align=\"center\"><img src=\"photos/" + pic + ".jpg\" width=\"" + imagewidth + "\" height=\"" + imageheight + "\" alt=\"enlarged image\"></td></tr><tr><td align=\"center\"></td></tr></table></body></html>");
        picWin.document.close();
}

self.name = "main";
function openWinGif(width, height, imagewidth, imageheight, pic) {
        picWin = open("", "popup", "width=" + width + ",height=" + height + ",toolbar=yes,directories=no,status=no,location=no,scrollbars=yes,resizable=yes,menubar=no");
        picWin.document.open();
        picWin.document.clear();
        picWin.document.writeln("<html><head><title>Westwood</title></head><body bgcolor=\"#333366\" leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\"><table width=\"100%\" height=\"100%\" cellpadding=0 cellspacing=0 border=0><tr><td valign=\"middle\" align=\"center\"><img src=\"images/" + pic + ".gif\" width=\"" + imagewidth + "\" height=\"" + imageheight + "\" alt=\"enlarged image\"></td></tr><tr><td align=\"center\"></td></tr></table></body></html>");
        picWin.document.close();
}

self.name = "main";
function openWinDrawing(width, height, imagewidth, imageheight, pic) {
        picWin = open("", "popup", "width=" + width + ",height=" + height + ",toolbar=yes,directories=no,status=no,location=no,scrollbars=yes,resizable=yes,menubar=no");
        picWin.document.open();
        picWin.document.clear();
        picWin.document.writeln("<html><head><title>Westwood</title></head><body bgcolor=\"#333366\" leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\"><table width=\"100%\" height=\"100%\" cellpadding=0 cellspacing=0 border=0><tr><td valign=\"middle\" align=\"center\"><img src=\"drawings/" + pic + ".gif\" width=\"" + imagewidth + "\" height=\"" + imageheight + "\" alt=\"enlarged image\"></td></tr><tr><td align=\"center\"></td></tr></table></body></html>");
        picWin.document.close();
}



// - end hiding -->