
<!--
function aprilFools(html1){

var april_fools = new Date();
var month =april_fools.getMonth()+1;
var date = april_fools.getDate();

var html  =  html;

if (month == 04 && date == 01){
	html = html1;
	window.location.href = html;
	}

}
//-->
