function openform() {
   newwin = window.open('form.htm','form','status,width=520,height=520,resizable,scrollbars');
   newwin.focus();
}
function getCorrectedYear(year) { /* needed for Netscape */
    year = year - 0;
    if (year < 70) return (2000 + year);
    if (year < 1900) return (1900 + year);
    return year;
}

function thisYear() {
    date = new Date();
    return getCorrectedYear(date.getYear());
}
function mailadd (which) {
   var one = "steveskinner@";
   var two = "cambsmedia.c";
   var three = "o.uk";
   return one+two+three;
}
function mailtag (which,subject) {
   return '<a href=\"mailto:' + mailadd(which) + '?subject=' + subject + '\">';
}
function maillink (which,text,subject) {
   if (!text) text = mailadd(which);
   if (!subject) subject = "Email from cambsmedia.co.uk";
   return mailtag(which,subject) + text + "</a>";
}



