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('<table width="100%" border="0" cellpadding="0" cellspacing="0"><!--DWLayoutTable--><tr><td width="233" height="251" align="right" valign="top"><span class="titles">phone<br><br>fax<br><br>email<br><br>arena<br><br><br>post<br><br><br>web<br><br>morse<br><br>cans n\'string</span></td><td width="20" valign="top"><img src="images/spacer_white20w1h.gif" width="20" height="1"></td><td width="233" valign="top"><span class="standard">713.868.1444<br><br>713.868.4248<br><br><a href="mailto:info@comedysportzhouston.com">info@comedysportzhouston.com</a><br><br>901 Town & Country Blvd.<br>Houston, TX 77024<br><br>P. O. Box 701277<br>Houston, Texas 77270-1277<br><br>www.comedysportzhouston.com<br><br>-.-. ... --.. .... --- ..- ... - --- -.<br><br>from Peter\'s Treehouse</span></tr></table>','<!--DWLayoutEmptyCell-->&nbsp;','<a href="#" onClick="showContact(1)" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'next\',\'\',\'images/next_button_ro.gif\',1)"><img src="images/next_button.gif" name="prev" width="80" height="24" border="0"></a>');
theText[1] = new Array('<span class="titles"><a href="mailto:info@comedysportzhouston.com">Join our E-mail List!</a></span><span class="standard"><br>Would you like to keep up-to-date on what\'s happening with ComedySportz-Houston? Sign up for our e-mailing list. All we need is your e-mail address. Every couple of months you\'ll receive our latest Newzletter. You will also receive special discount offers. Our mailing list addresses are never sold, rented, leased, traded, swapped, marketed, exchanged or bartered to anyone. Really.<br><br></span><span class="titles"><a href="newsletters.jsp">Newzletter archive</a></span><span class="standard"><br>We produce a newzletter every other month that let\'s you know what special shows are being offered as well as what is going on with all the CSz troupe members. Here are our past newzletters for your reading enjoyment.<br></span>','<a href="#" onClick="showContact(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>','<a href="#" onClick="showContact(2)" 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[2] = new Array('<span class="titles">How\'s Our Driving?</span><span class="standard"><br>CSz-HOUSTON is creating a "virtual suggestion box" so that your voice can be heard! We\’re curious about how you feel about the show, our space, even our breath. How can we make ComedySportz a better experience for our loyal fanz? All suggestions, comments, praise, and constructive criticism will be taken into consideration, and our top-notch marketing and artistic teams will get to work incorporating your feedback. Just send us an e-mail to <a href="mailto:suggestions@comedysportzhouston.com">suggestions@comedysportzhouston.com</a> and thanks for your continued support over the past 12 years.</span>','<a href="#" onClick="showContact(1)" 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 showContact(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];
}
