var winl = (screen.width-500)/2;
var wint = (screen.height-190)/2;
          
function moreInfo(name,info,age,city)
     {  

    if (age == ""){

	age = "Celebrating in " + city;
	}

	else {
	age = age + " years old in " + city;
     }	

var settings = 'left=' + winl + ',' + 'top=' + wint +  ',' + 'width=500' + ',' + 'height=190' + ',' + 'toolbar=0,location=0,statusbar=0,menubar=0,scrollbars=1,resizable=0';

OpenWindow=window.open("","Info",settings);

OpenWindow.window.focus();

OpenWindow.document.write("<html><head><TITLE>Happy Birthday from the Rabbit and all of us at 96.9 WXBQ!&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TITLE></head>")
OpenWindow.document.write("<BODY BGCOLOR='#ffffff' alink='#000000' vlink='#000000' link='#000000' style='font-family:arial;border: 0px;'>")
OpenWindow.document.write("<table align=center cellspacing=15><tr>")
OpenWindow.document.write("<td align=center>")
OpenWindow.document.write("<font face=arial size=5><b>" + name)
OpenWindow.document.write("</b><br><font face=arial size=2><i>")
OpenWindow.document.write(age)
OpenWindow.document.write("</i><p align=left><font face=arial size='-1'>")
OpenWindow.document.write(info)
OpenWindow.document.write("</p><font size='-2' face='arial'><a href='javascript:close()' onMouseover=\"this.style.color='#0000ff'\" onMouseout=\"this.style.color='#000000'\">CLOSE WINDOW</a><br></td>")
OpenWindow.document.write("</tr></table>")
OpenWindow.document.write("</BODY>")
OpenWindow.document.write("</HTML>")

OpenWindow.document.close()
   
     }
