// JavaScript Document

//  Creates the page frame on the top and left
function top_page()
  {
document.write('<table class="container">');
document.write('<tr class="header">');
document.write('<td>');
document.write('<img border="0" src="'+imagepath+'images3/border/top-left-corner.jpg"><br />');
document.write('</td>');
document.write('<td>');
document.write('<img border="0" src="'+imagepath+'images3/border/top-left.jpg"><br />');
document.write('</td>');
document.write('<td style="background-image:URL('+imagepath+'images3/border/top.jpg); width:100%; padding-top:43px; text-align:center; background-repeat: repeat-x;">');
document.write('<a href="'+imagepath+'"><img border="0" src="'+imagepath+'images3/border/JSC_header_logo.jpg"></a>');
document.write('</td>');
document.write('<td>');
document.write('<img border="0" src="'+imagepath+'images3/border/top-right.jpg"><br />');
document.write('</td>');
document.write('<td>');
document.write('<img border="0" src="'+imagepath+'images3/border/top-right-corner.jpg"><br />');
document.write('</td>');
document.write('</tr>');
document.write('<tr style="height:100%;">');
document.write('<td style="background-image:URL('+imagepath+'images3/border/left.jpg); text-align:left; padding-left:21px;" valign="top">');
document.write('<img src="'+imagepath+'images3/wbSkatingAcademy.jpg" alt="Skating School"><br />');
document.write('<script type="text/javascript">');
document.write('left_nav();');
document.write('</script>');
document.write('</td>');
// document.write('<td style="background-image:url(\''+imagepath+'images3/main_backgnd.jpg\'); background-color:black; background-repeat:repeat-x;">');
// document.write('</td>');
document.write('<td align="center" colspan="3" style="background-image:url(\''+imagepath+'images3/main_backgnd.jpg\'); background-color:black; background-repeat:repeat-x;">');
  }

//  Create the page frame on the right and bottom  
function bottom_page()
  {
document.write('</td>');
// document.write('<td style="background-image:url(\''+imagepath+'images3/main_backgnd.jpg\'); background-color:black; background-repeat:repeat-x;">');
// document.write('</td>');
document.write('<td style="background-image:URL('+imagepath+'images3/border/right.jpg); text-align:right; padding-right:21px;" valign="top">');
document.write('<img src="'+imagepath+'images3/skatingevents.jpg" alt="Skating Events"><br />');
document.write('<script type="text/javascript">');
document.write('right_nav();');
document.write('</script>');
document.write('</td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td>');
document.write('<img border="0" src="'+imagepath+'images3/border/bottom-left-corner.jpg">');
document.write('</td>');
document.write('<td>');
document.write('<img border="0" src="'+imagepath+'images3/border/bottom-left.jpg">');
document.write('</td>');
document.write('<td id="contactus" style="background-image:URL('+imagepath+'images3/border/bottom.jpg); text-align:center; background-repeat: repeat-x; padding-bottom:40px;">');
document.write('&copy; Chautauqua Ice&nbsp;-&nbsp;3030 Chautauqua Avenue&nbsp;-&nbsp;Ashville, New York 14710&nbsp;&nbsp;(716) 664-6609<br />');
document.write('JSB Ice Arena&nbsp;-&nbsp;319 W 3rd ST&nbsp;-&nbsp;Jamestown, New York 14701&nbsp;&nbsp;(716) 484-2624 <br /><a href="'+imagepath+'contactus.html">Contact Us</a>');
document.write('</td>');
document.write('<td>');
document.write('<img border="0" src="'+imagepath+'images3/border/bottom-right.jpg"><br />');
document.write('</td>');
document.write('<td>');
document.write('<img border="0" src="'+imagepath+'images3/border/bottom-right-corner.jpg"><br />');
document.write('</td>');
document.write('</tr>');
document.write('</table>');
document.write('</p>');
  }
