function isAvail(d, y)
{
//return true;
	var now = new Date();

  if(now.getMonth() < 11 && y < now.getFullYear())
    return true; 
	if(now.getMonth() < 11 && y == now.getFullYear())
		return false;
	if(now.getMonth() == 11 && d > now.getDate())
		return false;

	return true;
}
function playMP3(m)
{
	window.open(m,"sound","height=1,width=1,screenX=0,screenY=0,left=0,top=0,resizable=no,scrollbars=no,toolbar=no,titlebar=no,menubar=no,location=no,status=no");
}

