// wwmsg.js 
// 16-10-2010	(c) A-biz

max = 3;
var kleur = new Array(max+1);
kleur[1] = "#B0FCC2";
kleur[2] = "#FCD7B0";
kleur[3] = "#B1C6FB";
nr = Math.floor(Math.random() * max) + 1;	

document.write("<table cellpadding='5' cellspacing='0' style='border: 1px solid #777777;'>");
document.write("<tr bgcolor='" + kleur[nr] + "'>");
document.write("<td>");
document.write("<font size='-2' color='#000000'>");
document.write("Every weekend we send out a FREE newsletter with EM information and offers.<br>");
document.write("To receive that newsletter, enter your Email address and click on button.");
document.write("<br><br>");
document.write("<form method='get' action='http://launch.groups.yahoo.com/subscribe/Groove_Unlimited'>");
document.write("<input ALIGN='left' type='text' name='user' value='your@email.address' size='50'>");
document.write("<br><br>");
document.write("Easy UNsubscribe instructions are in every newsletter.");
document.write("</font>");
document.write("</td>");
document.write("<td valign='middle'>");
document.write("<input type='image' border='0' name='Click to join' src='http://us.i1.yimg.com/us.yimg.com/i/yg/img/ui/join.gif'>");
document.write("</td>");
document.write("</tr>");
document.write("</table>");
document.write("</form>");

