<!-- hide from old browsers

self.name = "main";
function openWin(width, height, URL) {

	go = window.open("","popup","toolbar=no,width=" + width + ",height=" + height + ",directories=no,status=no,location=no,scrollbars=no,resizable=no,menubar=no");
	if(go!=null) {
			if(go.opener == null) {
					go.opener = self;
			}
			go.location.href = URL+".asp";
				}
	}

function gallWin(width, height, imagewidth, imageheight, pic, comment) {
        picWin = open("", "popup", "width=" + width + ",height=" + height + ",toolbar=no,directories=no,status=no,location=no,scrollbars=yes,resizable=no,menubar=no");
        picWin.document.open();
        picWin.document.clear();
        picWin.document.writeln("<html><head><title>Homecare Supplies - Helping you improve your home. Household appliances, fireplaces, bathrooms, cookers, ovens, fridge freezers, washing machines, sinks and taps</TITLE></head><body bgcolor=\"#FFFFFF\" leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\"><table width=\"100%\" height=\"100%\" cellpadding=0 cellspacing=0 border=0><tr><td valign=\"middle\" align=\"center\"><font face=\"verdana\" size=\"2\"><img src=\"images/" + pic + ".jpg\" width=\"" + imagewidth + "\" height=\"" + imageheight + "\" alt=\"images\"><br><b>" + comment + "</b></font></td></tr></table></body></html>");
        picWin.document.close();
}

// - end hiding -->