// JavaScript Document quoter.jsvar target_field;var newwin;function getcolourchart(fld) {	target_field = fld;	newwin = window.open('colourchart.html','colour_chart','width=690,height=580,toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes');	newwin.focus();}function setcolour(clr) {	target_field.value = clr;}
