
	
function openWindow(title, image, colour) {
	newWindow = window.open("", "newWin", "scrollbars=yes width=640, height=700 left=200,top=0")
	
	newWindow.document.write("<html><head><title>Fox Associates - Building Consultants</title></head>")
	newWindow.document.write("</font><body bgcolor='")
	newWindow.document.write(colour)
	newWindow.document.write("'><table width='600'><tr><td width='160'>")
	newWindow.document.write("<img border='0' src='images/foxanim.gif' width='60' height='51' align='top'")
	newWindow.document.write("</td><td align='left'><font face='Tahoma' size='5' color='#666666'>")
	newWindow.document.write(title)
	newWindow.document.write("</font></td><td align='right'><a href='javascript:window.close()'>")
	newWindow.document.write("<font face='Tahoma' size='2'>Close</font></a>")
	newWindow.document.write("</td></tr></table>")
	newWindow.document.write("<img align='center' src='images/")
	newWindow.document.write(image)
	newWindow.document.write("'</body></html>")
		
	newWindow.document.close()
		
}
								 