<!--
// Manuel Colom - 2003 - all rights reserved 

function buildShape001(pageHeightPx) {
	var imageWidth = 0;
	var decal = 0;
	for ( y=0 ; y<pageHeightPx ; y=y+18 ) {
			widthRealLeft = 216.624 + 0.822426*(y+decal) - 0.00486141*Math.pow(y+decal,2)  + 6.13525e-06*Math.pow(y+decal,3) - 2.13176e-9*Math.pow(y+decal,4);
			widthRealRight = 148.076 - 0.615601*(y+decal) + 0.000756249*Math.pow(y+decal,2);
			imageWidthLeft = Math.ceil(widthRealLeft)+40;
			imageWidthRight = Math.ceil(widthRealRight);

			document.write ('<IMG class="LeftCurve" vspace="0" hspace="0" SRC="./images/spacer.gif" WIDTH="' + imageWidthLeft +  '" HEIGHT="18" BORDER="0" ALT="">' );
			document.write ('<IMG class="RightCurve" vspace="0" hspace="0" SRC="./images/spacer.gif" WIDTH="' + imageWidthRight +  '" HEIGHT="18" BORDER="0" ALT="">' );
	};
}
-->