var theText = new Array();
var whichText;

// To add more files, continue with the pattern below, adding to the array.  Note: no carriage returns are allowed

theText[0] = new Array('<span class="standard">ComedySportz corporate training seminars are an innovative way to enable individuals and groups to achieve personal and team goals...and have fun in the process. We take the basic principals we use to put on a successful improv show and apply them to the specific group’s needs - culminating in an individually tailored seminar that meets your objectives.<br><br>                Our professional facilitators lead the group through various improvisational games and exercises that are designed to work on specific skills in an interactive, fun and relaxed environment.<br><br>Our seminars allow the participants to become actively involved because we believe in a common sense, hands-on, get-up-off-your-chair-and-have-fun approach that will get people energized and laughing. By the end of the workshop, we’ll have the group effectively working together by thinking positively, listening closely, and trusting in their own and their fellow team members’ abilities. Not to mention, having a whole lot of fun doing it!<br><br>Our seminars are great for company retreats, staff development, department meetings, or just for a fun workplace stress-reliever.</span>',
    '<!--DWLayoutEmptyCell-->&nbsp;',
    '<a href="#" onClick="showHire(1)" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'next\',\'\',\'images/next_button_ro.gif\',1)"><img src="images/next_button.gif" name="next" width="80" height="24" border="0"></a>');
theText[1] = new Array('<span class="titles">RECENT CORPORATE TRAINING WORKSHOPS:<br><br></span>' +
    '<span class="standard">' +
    '<b>Alcon</b>: Facilitated team building workshop for Human Resources Managers from across the country who work together, but see each other only two times a year.<br><br>' +
    '<b>Air Liquide</b>: Facilitated team building workshop for upper management group recently brought together to form new energy group.<br><br>' +
    '<b>Aker Kvaerner</b>: Facilitated leadership and team alignment session for project leads.<br><br>' +
    '<b>First Community Bank</b>: Wrote and presented original sketches to demonstrate FISH philosophy.<br><br>' +
    '<b>NextiraOne/Nortel</b>: Lead teambuilding workshop for sales group and clients.<br><br>' +
    '<b>Yorkshire Academy</b>: Presented third annual workshop to faculty and staff to kick-off academic school year.<br><br>' +
    '<b>Shell Oil</b>: Wrote and presented original sketches to demonstrate core values.<br>&nbsp;' +
    '</span>',
    '<a href="#" onClick="showHire(0)" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'prev\',\'\',\'images/prev_button_ro.gif\',1)"><img src="images/prev_button.gif" name="prev" width="80" height="24" border="0"></a>',
    '<!--DWLayoutEmptyCell-->&nbsp;');

//var intWhich = 0;
function showHire(whichText) {
    if (document.all) { 
        //IE
        var objContent = document.all.ContentArea;
        var objContent2 = document.all.ContentPrev;
        var objContent3 = document.all.ContentNext;
    }
    else if(document.layers) {
        //Nav4
        var objContent = document.layers.ContentArea;
        var objContent2 = document.layers.ContentPrev;
        var objContent3 = document.layers.ContentNext;
    }
    else if(document.getElementById) {
        //Standard
        var objContent = document.getElementById("ContentArea");
        var objContent2 = document.getElementById("ContentPrev");
        var objContent3 = document.getElementById("ContentNext");
    }
    
    objContent.innerHTML = theText[whichText][0];
    objContent2.innerHTML = theText[whichText][1];
    objContent3.innerHTML = theText[whichText][2];
}