function showData(what) {
    var data = "";
    switch(what) {
        case 1:
            data = 'Puerto Rico 2600 meeting.';
            break;
        case 2:
            data = '<p>The first Friday of each month around 7:30pm local time.</p>'  +
                '<iframe src="https://www.google.com/calendar/embed?showTitle=0&amp;height=300&amp;wkst=1&amp;bgcolor=%23FFFFFF&amp;src=2600.puertorico%40gmail.com&amp;color=%232952A3&amp; ' +
                'ctz=America%2FPuerto_Rico" style=" border-width:0 " width="600" height="400" frameborder="0" scrolling="no"></iframe> ';
            break;
        case 3:
            data = '<p>The Office Irish Pub, Trujillo Alto, P.R</p>';
            data += '<p>Because of the UPR strike we are moving the meeting to another location, this move is temporary unless we really like the place.</p>';
            data += '<!--<p>UPR (Puerto Rico University) Rio Piedras Campus, student center(tent.)</p> --> ';
            data += '<!-- Google Maps --> ';
            data += '<iframe width="550" height="330" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" ' +
                    'src="http://maps.google.com/maps/ms?ie=UTF8&amp;hl=en&amp;msa=0&amp;msid=106828928050878971384.000485ed024c9c22860af&amp;' +
                    'll=18.384464,-66.023291&amp;spn=0.028508,0.036478&amp;z=14&amp;output=embed"></iframe><br />' +
                    '<small>View <a href="http://maps.google.com/maps/ms?ie=UTF8&amp;hl=en&amp;msa=0&amp;msid=106828928050878971384.000485ed024c9c22860af&amp; ' + 
                    'll=18.384464,-66.023291&amp;spn=0.028508,0.036478&amp;z=14&amp;source=embed" style="color:#0000FF;text-align:left">Directions to Cam Matienzo, Trujillo Alto</a> in a larger map</small> ';
            break;
        case 4:
            data = '<p>An open forum for people to gather and discuss. learn, and <br / >teach everything from technology to well...whatever.<br /> All in the hacker spirit.<br / > Meetings are open to all of any age, any sex, and any level of expirience.</p> ';
            break;
        case 5:
            data = '<p>Your presence is enough, but come on who amoung us leaves <br / >the house without our notebook/netbook.<br / > Bring an open mind and the knowledge that all of us really need to learn something.</p> ';
            break;
        default:
            data = 'Puerto Rico 2600 meeting.'
       
    }
    document.getElementById('data').innerHTML = data;
}

function initPage() {
    showData(1);
}

