	Stamp = new Date();
	var days;
	var togo;
	var startson;
	
	days = Stamp.getDate();
	startson = 19

        var Month;
        if (Stamp.getMonth() == 0) {togo = startson - days;}
        if (Stamp.getMonth() == 1) {togo = 28 - days + 31 + 30 + 31 + 30 + 31 + 31 + 30 + 31 + 30 + 31 + startson;}
        if (Stamp.getMonth() == 2) {togo = 31 - days + 30 + 31 + 30 + 31 + 31 + 30 + 31 + 30 + 31 + startson;}
        if (Stamp.getMonth() == 3) {togo = 30 - days + 31 + 30 + 31 + 31 + 30 + 31 + 30 + 31 + startson;}
        if (Stamp.getMonth() == 4) {togo = 31 - days + 30 + 31 + 31 + 30 + 31 + 30 + 31 + startson;}
        if (Stamp.getMonth() == 5) {togo = 30 - days + 31 + 31 + 30 + 31 + 30 + 31 + startson;}
        if (Stamp.getMonth() == 6) {togo = 31 - days + 31 + 30 + 31 + 30 + 31 + startson;}
        if (Stamp.getMonth() == 7) {togo = 31 - days + 30 + 31 + 30 + 31 + startson;}
        if (Stamp.getMonth() == 8) {togo = 30 - days + 31 + 30 + 31 + startson;}
        if (Stamp.getMonth() == 9) {togo = 31 - days + 30 + 31 + startson;}
        if (Stamp.getMonth() == 10) {togo = 30 - days + 31 + startson;}
        if (Stamp.getMonth() == 11) {togo = 31 - days + startson;}

		if (togo == 0 || togo == - 1 || togo == -2 || togo == -3 ) {togo = "Now open";}
		if (togo < -3 ) {togo = "Sorry too late";}
		if (togo > 0 ) {togo = togo + " days to go";}
		
//	document.write('<font size="2" face="Arial,Geneva,Sans Serif"><B>' + Stamp.getDate() +"/"+ Month + "/"+Stamp.getYear() + "  " + Hours + ":" + Mins + '</B></font><BR>');
	document.write('<font size="2" face="Arial,Geneva,Sans Serif"><B>' + togo + '</B></font><BR>');