<!-- Begin
// file: common.js
// date: 04/01/02
// site: www.daylightsanctuary.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 : #9900ff;}')

// Set scrollbar colours

document.write('body {')
document.write('scrollbar-arrow-color:      #00007F;') // Scroll arrows
document.write('scrollbar-track-color:      #FFFFCC;') // Track background
document.write('scrollbar-3dlight-color:    #FFFF33;') // LH lowlight
document.write('scrollbar-highlight-color:  #FFFFFF;') // LH highlight
document.write('scrollbar-face-color:       #FFFF99;') // Front Face
document.write('scrollbar-shadow-color:     #FFCC99;') // RH shadow
document.write('scrollbar-darkshadow-color: #003300;') // RH dark shadow

document.write('} -->  </STYLE>')

// Set popup window function
function NewWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

// End -->
