<!-- Begin
// file: common.js
// date: 17/07/05
// site: www.eastmidsdowsers.co.uk
// author:  drf - www.davidflatters.co.uk


// 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(); }
}

// Set ie specific attributes
window.onload = function()
{
var htmlStyle = document.getElementsByTagName('html')[0].style;
var bodyStyle = document.body.style;
bodyStyle.scrollbarFaceColor = htmlStyle.scrollbarFaceColor = '#BFDFFF';
bodyStyle.scrollbarArrowColor = htmlStyle.scrollbarArrowColor = '#295201';
//bodyStyle.scrollbarTrackColor = htmlStyle.scrollbarTrackColor = '#295201';
bodyStyle.scrollbarShadowColor = htmlStyle.scrollbarShadowColor = '#3399FF';
bodyStyle.scrollbarHighlightColor = htmlStyle.scrollbarHighlightColor = '#CCFFFF';
bodyStyle.scrollbar3dlightColor = htmlStyle.scrollbar3dlightColor = '#9BC7E3';
bodyStyle.scrollbarDarkshadowColor = htmlStyle.scrollbarDarkshadowColor = '#7F0000';
}

// End -->
