
<!-- Hide code from older browsers


// Function to display the date
 
 	d = new Array(
	"Sunday",
	"Monday",
	"Tuesday",
	"Wednesday",
	"Thursday",
	"Friday",
	"Saturday"
	);
	m = new Array(
	"January",
	"February",
	"March",
	"April",
	"May",
	"June",
	"July",
	"August",
	"September",
	"October",
	"November",
	"December"
	);
 

//
// display the current date
//
function DisplaytheDate() {
	
	today = new Date();
	day = today.getDate();
	year = today.getYear();
	
	if (year < 2000)    // Y2K Fix, Isaac Powell
	year = year + 1900; // http://onyx.idbsu.edu/~ipowell
	
	end = "th";
	if (day==1 || day==21 || day==31) end="st";
	if (day==2 || day==22) end="nd";
	if (day==3 || day==23) end="rd";
	day+=end;
		document.write(day+" "); document.write(m[today.getMonth()]+" " + year)+"&nbsp;&nbsp;";
	
} 

//
// send email avoiding loads of spam
//
function mailme() {
var name = "sales";
var domain = "kaleidoscope-toys.co.uk";
var fulldomain = "kaleidoscope-toys.co.uk?subject=Online Customer Enquiry";
document.write('<font color=\"#000080\""><a href=\"mailto:' + name + '@' + fulldomain + '\">');
document.write(name + '@' + domain + '</a></font>');
}


function opWin6612() {
if (document.getElementById) {
var width = screen.availWidth;
var height = screen.availHeight;
var windowFeatures = "width=" + width + ",height=" + height + ",status=no,resizable=yes,left=0,top=0screenX=0,screenY=0";
myWindow = window.open('http://www.online-brochures.net/files/6612/brochure.asp', "subWind", windowFeatures);
myWindow.focus();
return false;
} else {
return true;
}
}



// Stop hiding code -->




