//  ######################################################################
//  ##	  Hostel Vacancies - Cold Weather Warning   -   November.2009	##
//  ##	 	written by Georgia Oikonomidou (sirinae@yahoo.com)	##
//  ##		property of the Bradford City Centre Project (BCCP)	##
//  ######################################################################



function AddBeds() {

i=0
while(i < 14) {

	document.write("<div class='vacant'>" + beds[i] + "</div>")
	i++	}

j=0
while(j < 8) {
	document.write("<div class='vacant'>" + lists[j] + "</div>")
	j++	}
}


function Cold() {

	if(StartDay == "" && EndDay == "") 
	{ Statement = "COLD WEATHER SERVICE CLOSED"; }
	else 
	{ Statement = "COLD WEATHER SERVICE OPEN FROM " + StartDay + " --  " + EndDay; }

	document.write("<p class='Cold'><a href='http://www.metoffice.gov.uk/weather/uk/yh/bradford_forecast_weather.html'><img src='Cold.gif' alt='MET Office website'></a> " + Statement + "<font size='-2'><a href='coldweather.doc' target='_top'>   Referral Criteria</a><br><i>During weekends and bank holidays contact Octavia Court on 01274 257600</i></font></p>");

}