<!-- Begin
// file: common.js
// date: 09/10/02
// site: www.helen.m.burrell.btinternet.co.uk
// author:  drf - www.davidflatters.co.uk

//load stylesheet
document.write('<LINK REL="stylesheet" HREF="styles.css" TYPE="text/css">')

// Set hover colour
//document.write('<STYLE><!-- A:hover { color : #6600ff;}--> </STYLE>')

// Set popup window function
function NewWindow(mypage, myname, w, h, scroll,rsize) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resize='+rsize
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

// End -->
