function emlink(display_text, mbox, domain, subject)
{
document.write(
'<A HREF="'
+ 'mai' + 'lto:' 
+ mbox
+ '@' 
+ domain 
+ '.co.' 
+ 'uk' 
+ '?subject=-!- ' + subject + ' '
+ '&body=***Please note*** If you wish to change the Subject line above, please leave the -!- in place, as it helps us sort your e-mail from spam.  Thank you!'
+'">'
+ display_text 
+ '</A>'
);
}

function openWindow(url, w, h) {
	if (document.all)
     	    var xMax = screen.width, yMax = screen.height;
   	else if (document.layers)
       	    var xMax = window.outerWidth, yMax = window.outerHeight;
     	else
            var xMax = 640, yMax=480;

    	var xOffset = (xMax - w)/2, yOffset = (yMax - h)/2;

	var options = 'width=' + w + ',height=' + h + ',screenX=' + xOffset + ',';
	options += 'screenY=' + yOffset + ',top=' + yOffset + ',left=' + xOffset +',';
	options += 'resizable=no,scrollbars=yes,status=no,';
	options += 'menubar=no,toolbar=no,location=no,directories=no,';
	var newWin = window.open(url, 'newWin', options);
	newWin.focus();
}