var who;
var who2;
var bday;//mmdd
function birthday(who,who2,bday)
{
var d = new Date()
var month = d.getMonth()
month=month+1
var day = d.getDate()
var dm = (month*100)+day
	if (dm == bday)// birthday here
	{
	document.write('<font color=#33CCFF font size=5 font face=comic sans ms>');
	document.write("<marquee><b>Today is " + who + " birthday - Happy Birthday " +who2+ " -  from your family, friends and fans</b></marquee>");

	document.write('</font>');

	}
}
