//  ######################################################################
//  ##	  Hostel Vacancies - Cold Weather Warning   -   January.2011	##
//  ##	 	written by Georgia Oikonomidou (sirinae@yahoo.com)	##
//  ##		property of the Bradford City Centre Project (BCCP)	##
//  ######################################################################



function AddBeds() {

i=0
while(i < 15) {

	document.write("<div class='vacant'>" + beds[i] + "</div>")
	i++	}

j=0
while(j < 9) {
	document.write("<div class='vacant'>" + lists[j] + "</div>")
	j++	}
}


function Cold() {

	if(Coldweather == "ON" || Coldweather == "on" || Coldweather == "On") 
	{ 
	document.write("<div class='Cold' style='font-size: 9pt;'><a href='coldweather.doc'>The Cold weather service</a> is currently open. To make a referral, please <a href='coldweather.doc'>Click Here</a>. <br>During weekends and bank holidays contact Octavia Court on 01274 257600</div>");
   }

	else 
	{ 
	document.write("<div class='Cold'><a href='coldweather.doc'>The Cold weather service</a> will be open when temperature is equal or below 0 &deg;C.<br>During weekends and bank holidays contact Octavia Court on 01274 257600</div>");
   }


}
