<BODY STYLE="background-image:
url(http://i272.photobucket.com/albums/jj162/BobiSu/gradient42267474.png)">
<DIV align=center>
<DIV STYLE="filter: dropShadow(color=#3300cc,offX=3,offY=3);
width:500;">
<FONT SIZE="8" FACE="arial"
COLOR="#0000cc">
<B>Bowling
Tournament</B></FONT></DIV><br><br>
<SCRIPT language="JavaScript">
// ------------- Detect Browser ---------------
var browser = "unknown";
var version = 0;
if (navigator.userAgent.indexOf("Opera") >= 0)
browser =
"opera";
else if (navigator.userAgent.indexOf("obot") >=
0)
browser =
"robot";
else if (navigator.appName.indexOf("etscape")
>= 0)
browser =
"netscape";
else if (navigator.appName.indexOf("icrosoft")
>= 0)
browser =
"msie";
version = parseFloat(navigator.appVersion);
if (isNaN(version)) version = 0;
if ((browser == "msie")&&(version == 2))
version = 3;
// ------------------ Gradient Output --------------------
// lookup table
var tohex = new Array(256);
var hex = "0123456789ABCDEF";
var count = 0;
for (x=0; x<16; x++) {
for (y=0; y<16;
y++) {
tohex[count] =
hex.charAt(x) + hex.charAt(y);
count++;
}
}
//ColorCode constructor
function ColorCode(hexcode) {
if (hexcode.length
== 7) {
this.r =
parseInt(hexcode.substring(1,3),16);
this.g =
parseInt(hexcode.substring(3,5),16);
this.b =
parseInt(hexcode.substring(5,7),16);
}
else if
(hexcode.length == 6) {
this.r =
parseInt(hexcode.substring(0,2),16);
this.g = parseInt(hexcode.substring(2,4),16);
this.b =
parseInt(hexcode.substring(4,6),16);
}
else {
this.r = this.g =
this.b = 0;
alert("Error:
ColorCode constructor failed");
}
if
(isNaN(this.r)||isNaN(this.g)||isNaN(this.b))
alert("Error:
ColorCode constructor failed");
}
// ColorList constructor
function ColorList(hexcodes) {
var i = 0;
var c = 0;
this.codes = new
Array(Math.round(hexcodes.length/7));
while (i <
hexcodes.length) {
if
(isNaN(parseInt(hexcodes.substring(i,i+6),16))) ++i;
else {
this.codes[c] =
new ColorCode(hexcodes.substring(i,i+6));
i += 7;
++c;
}
}
this.len = c;
}
function interpolate (x1, y1, x3, y3, x2) {
if (x3 == x1) return
y1
else return
(x2-x1)*(y3-y1)/(x3-x1) + y1
}
// x=index of letter, y=number of letters, z=number of
colors
function lowcolorindex (x, y, z) {
if (y == 1) return 0
else return
Math.floor( (x*(z-1))/(y-1) )
}
function hicolorindex (x, y, z, low) {
if ( low*(y-1) ==
x*(z-1) ) return low
else if (y == 1)
return 0
else return
Math.floor( (x*(z-1))/(y-1) + 1 )
}
function gradient (thetext,thecolors) {
if (((browser ==
"netscape")||(browser == "msie")||(browser ==
"opera"))&&(version>=3.0)) {
var colors = new
ColorList(thecolors);
var numcolors =
colors.len;
var numchars =
thetext.length;
var rr = 0;
var gg = 0;
var bb = 0;
var lci = 0;
//lower color index
var hci = 0;
//high color index
for (i=0;
i<numchars; ++i) {
lci =
lowcolorindex(i, numchars, numcolors);
hci =
hicolorindex(i, numchars, numcolors, lci);
rr =
Math.round(interpolate( lci/(numcolors-1), colors.codes[lci].r,
hci/(numcolors-1), colors.codes[hci].r, i/(numchars-1)));
gg =
Math.round(interpolate( lci/(numcolors-1), colors.codes[lci].g,
hci/(numcolors-1), colors.codes[hci].g, i/(numchars-1)));
bb =
Math.round(interpolate( lci/(numcolors-1), colors.codes[lci].b,
hci/(numcolors-1), colors.codes[hci].b, i/(numchars-1)));
if (browser ==
"opera") {
rr = 255 - rr;
gg = 255 - gg;
bb = 255 - bb;
}
document.write(thetext.charAt(i).fontcolor(tohex[rr]+tohex[gg]+tohex[bb]));
}
}
else
document.write(thetext); // unrecognized browser, better not to attempt
anything fancy
}
</SCRIPT>
<DIV align=center>
<B><FONT FACE="arial"
SIZE="7">
<SCRIPT language="JavaScript">
gradient("Whatcha Mean 'NO
HANDICAP'","#fa292f #fa292f
#fa292f #fa2982 #fc27f7
#fc27f7 #fb28bc #fa2982
#fa292f #fa292f ");
document.write("</FONT></B><BR>");
</SCRIPT>
</DIV>
<SCRIPT language="JavaScript">
// ------------- Detect Browser ---------------
var browser = "unknown";
var version = 0;
if (navigator.userAgent.indexOf("Opera") >= 0)
browser =
"opera";
else if (navigator.userAgent.indexOf("obot") >=
0)
browser =
"robot";
else if (navigator.appName.indexOf("etscape")
>= 0)
browser = "netscape";
else if (navigator.appName.indexOf("icrosoft")
>= 0)
browser =
"msie";
version = parseFloat(navigator.appVersion);
if (isNaN(version)) version = 0;
if ((browser == "msie")&&(version == 2))
version = 3;
// ------------------ Gradient Output --------------------
// lookup table
var tohex = new Array(256);
var hex = "0123456789ABCDEF";
var count = 0;
for (x=0; x<16; x++) {
for (y=0; y<16;
y++) {
tohex[count] =
hex.charAt(x) + hex.charAt(y);
count++;
}
}
//ColorCode constructor
function ColorCode(hexcode) {
if (hexcode.length
== 7) {
this.r =
parseInt(hexcode.substring(1,3),16);
this.g =
parseInt(hexcode.substring(3,5),16);
this.b =
parseInt(hexcode.substring(5,7),16);
}
else if
(hexcode.length == 6) {
this.r =
parseInt(hexcode.substring(0,2),16);
this.g =
parseInt(hexcode.substring(2,4),16);
this.b =
parseInt(hexcode.substring(4,6),16);
}
else {
this.r = this.g =
this.b = 0;
alert("Error:
ColorCode constructor failed");
}
if (isNaN(this.r)||isNaN(this.g)||isNaN(this.b))
alert("Error:
ColorCode constructor failed");
}
// ColorList constructor
function ColorList(hexcodes) {
var i = 0;
var c = 0;
this.codes = new
Array(Math.round(hexcodes.length/7));
while (i <
hexcodes.length) {
if
(isNaN(parseInt(hexcodes.substring(i,i+6),16))) ++i;
else {
this.codes[c] =
new ColorCode(hexcodes.substring(i,i+6));
i += 7;
++c;
}
}
this.len = c;
}
function interpolate (x1, y1, x3, y3, x2) {
if (x3 == x1) return
y1
else return
(x2-x1)*(y3-y1)/(x3-x1) + y1
}
// x=index of letter, y=number of letters, z=number of
colors
function lowcolorindex (x, y, z) {
if (y == 1) return 0
else return
Math.floor( (x*(z-1))/(y-1) )
}
function hicolorindex (x, y, z, low) {
if ( low*(y-1) ==
x*(z-1) ) return low
else if (y == 1)
return 0
else return
Math.floor( (x*(z-1))/(y-1) + 1 )
}
function gradient (thetext,thecolors) {
if (((browser ==
"netscape")||(browser == "msie")||(browser ==
"opera"))&&(version>=3.0)) {
var colors = new
ColorList(thecolors);
var numcolors =
colors.len;
var numchars =
thetext.length;
var rr = 0;
var gg = 0;
var bb = 0;
var lci = 0;
//lower color index
var hci = 0;
//high color index
for (i=0;
i<numchars; ++i) {
lci =
lowcolorindex(i, numchars, numcolors);
hci =
hicolorindex(i, numchars, numcolors, lci);
rr =
Math.round(interpolate( lci/(numcolors-1), colors.codes[lci].r,
hci/(numcolors-1), colors.codes[hci].r, i/(numchars-1)));
gg =
Math.round(interpolate( lci/(numcolors-1), colors.codes[lci].g,
hci/(numcolors-1), colors.codes[hci].g, i/(numchars-1)));
bb =
Math.round(interpolate( lci/(numcolors-1), colors.codes[lci].b,
hci/(numcolors-1), colors.codes[hci].b, i/(numchars-1)));
if (browser ==
"opera") {
rr = 255 - rr;
gg = 255 - gg;
bb = 255 - bb;
}
document.write(thetext.charAt(i).fontcolor(tohex[rr]+tohex[gg]+tohex[bb]));
}
}
else
document.write(thetext); // unrecognized browser, better not to attempt
anything fancy
}
</SCRIPT>
<DIV align=center>
<B><FONT FACE="arial"
SIZE="6">
<SCRIPT language="JavaScript">
gradient("(Boy Are We in Trouble!)","#fa292f
#fa292f #fa2982 #fb28bc
#fc27f7 #fb28bc #fa2982
#fa2982 #fa292f #fa292f ");
document.write("</FONT></B><BR>");
</SCRIPT>
</DIV>
<BR><br><br>
<img
src=http://i272.photobucket.com/albums/jj162/BobiSu/PogoGames_subfolders/Bowling/bowlingsplite.jpg><br><br><br><br>
<IMG
src="http://i272.photobucket.com/albums/jj162/BobiSu/DivazLogoLg3B150.jpg"><br><br>
<table
style="border: 0px SOLID #FFFFFF" cellspacing="0"
cellpadding="0" width="340" align="center">
<tr>
<td><center><font color="#ffffff"
size="4"><br><br>Copy and paste the entire code,
inside the white box,
into 'Customize Tourney Layout,'then fill in the following
information in the appropriate boxes.
<br><br>
Tourney Style: Classic <br>
Font Type: Arial Black
<br>
Color Scheme: Custom<br>
Link Color: #FA292f<br>
Text Color:#FFFFFF<br>
Header Background Color:#FA292F<br>
Header Text Color:#FFFFFF<br>
Small Header Color:#FA292F<br>
Title Color:#FFFFFF<BR><BR>
</font>
</center><FONT COLOR=#FFFFFF>Custom HTML:
<textarea rows="20" cols="50">
<BODY STYLE="background-image:
url(http://i272.photobucket.com/albums/jj162/BobiSu/gradient42267474.png)">
<DIV align=center>
<DIV STYLE="filter:
dropShadow(color=#3300cc,offX=3,offY=3); width:500;">
<FONT SIZE="8" FACE="arial"
COLOR="#0000cc">
<B>Bowling
Tournament</B></FONT></DIV><br><br>
<SCRIPT language="JavaScript">
// ------------- Detect Browser ---------------
var browser = "unknown";
var version = 0;
if (navigator.userAgent.indexOf("Opera") >= 0)
browser =
"opera";
else if (navigator.userAgent.indexOf("obot") >=
0)
browser =
"robot";
else if (navigator.appName.indexOf("etscape")
>= 0)
browser =
"netscape";
else if (navigator.appName.indexOf("icrosoft")
>= 0)
browser = "msie";
version = parseFloat(navigator.appVersion);
if (isNaN(version)) version = 0;
if ((browser == "msie")&&(version == 2))
version = 3;
// ------------------ Gradient Output --------------------
// lookup table
var tohex = new Array(256);
var hex = "0123456789ABCDEF";
var count = 0;
for (x=0; x<16; x++) {
for (y=0; y<16;
y++) {
tohex[count] =
hex.charAt(x) + hex.charAt(y);
count++;
}
}
//ColorCode constructor
function ColorCode(hexcode) {
if (hexcode.length
== 7) {
this.r = parseInt(hexcode.substring(1,3),16);
this.g =
parseInt(hexcode.substring(3,5),16);
this.b =
parseInt(hexcode.substring(5,7),16);
}
else if
(hexcode.length == 6) {
this.r =
parseInt(hexcode.substring(0,2),16);
this.g =
parseInt(hexcode.substring(2,4),16);
this.b =
parseInt(hexcode.substring(4,6),16);
}
else {
this.r = this.g =
this.b = 0;
alert("Error:
ColorCode constructor failed");
}
if
(isNaN(this.r)||isNaN(this.g)||isNaN(this.b))
alert("Error:
ColorCode constructor failed");
}
// ColorList constructor
function ColorList(hexcodes) {
var i = 0;
var c = 0;
this.codes = new
Array(Math.round(hexcodes.length/7));
while (i <
hexcodes.length) {
if
(isNaN(parseInt(hexcodes.substring(i,i+6),16))) ++i;
else {
this.codes[c] =
new ColorCode(hexcodes.substring(i,i+6));
i += 7;
++c;
}
}
this.len = c;
}
function interpolate (x1, y1, x3, y3, x2) {
if (x3 == x1) return
y1
else return
(x2-x1)*(y3-y1)/(x3-x1) + y1
}
// x=index of letter, y=number of letters, z=number of
colors
function lowcolorindex (x, y, z) {
if (y == 1) return 0
else return
Math.floor( (x*(z-1))/(y-1) )
}
function hicolorindex (x, y, z, low) {
if ( low*(y-1) ==
x*(z-1) ) return low
else if (y == 1)
return 0
else return
Math.floor( (x*(z-1))/(y-1) + 1 )
}
function gradient (thetext,thecolors) {
if (((browser ==
"netscape")||(browser == "msie")||(browser ==
"opera"))&&(version>=3.0)) {
var colors = new ColorList(thecolors);
var numcolors =
colors.len;
var numchars =
thetext.length;
var rr = 0;
var gg = 0;
var bb = 0;
var lci = 0;
//lower color index
var hci = 0;
//high color index
for (i=0;
i<numchars; ++i) {
lci =
lowcolorindex(i, numchars, numcolors);
hci =
hicolorindex(i, numchars, numcolors, lci);
rr =
Math.round(interpolate( lci/(numcolors-1), colors.codes[lci].r,
hci/(numcolors-1), colors.codes[hci].r, i/(numchars-1)));
gg = Math.round(interpolate(
lci/(numcolors-1), colors.codes[lci].g, hci/(numcolors-1), colors.codes[hci].g,
i/(numchars-1)));
bb =
Math.round(interpolate( lci/(numcolors-1), colors.codes[lci].b,
hci/(numcolors-1), colors.codes[hci].b, i/(numchars-1)));
if (browser == "opera") {
rr = 255 - rr;
gg = 255 - gg;
bb = 255 - bb;
}
document.write(thetext.charAt(i).fontcolor(tohex[rr]+tohex[gg]+tohex[bb]));
}
}
else
document.write(thetext); // unrecognized browser, better not to attempt
anything fancy
}
</SCRIPT>
<DIV align=center>
<B><FONT FACE="arial"
SIZE="7">
<SCRIPT language="JavaScript">
gradient("Whatcha Mean 'NO
HANDICAP'","#fa292f #fa292f
#fa292f #fa2982 #fc27f7
#fc27f7 #fb28bc #fa2982
#fa292f #fa292f ");
document.write("</FONT></B><BR>");
</SCRIPT>
</DIV>
<SCRIPT language="JavaScript">
// ------------- Detect Browser ---------------
var browser = "unknown";
var version = 0;
if (navigator.userAgent.indexOf("Opera") >= 0)
browser =
"opera";
else if (navigator.userAgent.indexOf("obot") >=
0)
browser =
"robot";
else if (navigator.appName.indexOf("etscape")
>= 0)
browser =
"netscape";
else if (navigator.appName.indexOf("icrosoft")
>= 0)
browser =
"msie";
version = parseFloat(navigator.appVersion);
if (isNaN(version)) version = 0;
if ((browser == "msie")&&(version == 2))
version = 3;
// ------------------ Gradient Output --------------------
// lookup table
var tohex = new Array(256);
var hex = "0123456789ABCDEF";
var count = 0;
for (x=0; x<16; x++) {
for (y=0; y<16;
y++) {
tohex[count] =
hex.charAt(x) + hex.charAt(y);
count++;
}
}
//ColorCode constructor
function ColorCode(hexcode) {
if (hexcode.length
== 7) {
this.r = parseInt(hexcode.substring(1,3),16);
this.g =
parseInt(hexcode.substring(3,5),16);
this.b =
parseInt(hexcode.substring(5,7),16);
}
else if
(hexcode.length == 6) {
this.r =
parseInt(hexcode.substring(0,2),16);
this.g =
parseInt(hexcode.substring(2,4),16);
this.b =
parseInt(hexcode.substring(4,6),16);
}
else {
this.r = this.g =
this.b = 0;
alert("Error:
ColorCode constructor failed");
}
if
(isNaN(this.r)||isNaN(this.g)||isNaN(this.b))
alert("Error:
ColorCode constructor failed");
}
// ColorList constructor
function ColorList(hexcodes) {
var i = 0;
var c = 0;
this.codes = new
Array(Math.round(hexcodes.length/7));
while (i <
hexcodes.length) {
if
(isNaN(parseInt(hexcodes.substring(i,i+6),16))) ++i;
else {
this.codes[c] =
new ColorCode(hexcodes.substring(i,i+6));
i += 7;
++c;
}
}
this.len = c;
}
function interpolate (x1, y1, x3, y3, x2) {
if (x3 == x1) return
y1
else return
(x2-x1)*(y3-y1)/(x3-x1) + y1
}
// x=index of letter, y=number of letters, z=number of
colors
function lowcolorindex (x, y, z) {
if (y == 1) return 0
else return
Math.floor( (x*(z-1))/(y-1) )
}
function hicolorindex (x, y, z, low) {
if ( low*(y-1) ==
x*(z-1) ) return low
else if (y == 1)
return 0
else return
Math.floor( (x*(z-1))/(y-1) + 1 )
}
function gradient (thetext,thecolors) {
if (((browser ==
"netscape")||(browser == "msie")||(browser ==
"opera"))&&(version>=3.0)) {
var colors = new ColorList(thecolors);
var numcolors =
colors.len;
var numchars =
thetext.length;
var rr = 0;
var gg = 0;
var bb = 0;
var lci = 0;
//lower color index
var hci = 0;
//high color index
for (i=0;
i<numchars; ++i) {
lci =
lowcolorindex(i, numchars, numcolors);
hci =
hicolorindex(i, numchars, numcolors, lci);
rr =
Math.round(interpolate( lci/(numcolors-1), colors.codes[lci].r,
hci/(numcolors-1), colors.codes[hci].r, i/(numchars-1)));
gg = Math.round(interpolate(
lci/(numcolors-1), colors.codes[lci].g, hci/(numcolors-1), colors.codes[hci].g,
i/(numchars-1)));
bb =
Math.round(interpolate( lci/(numcolors-1), colors.codes[lci].b,
hci/(numcolors-1), colors.codes[hci].b, i/(numchars-1)));
if (browser == "opera") {
rr = 255 - rr;
gg = 255 - gg;
bb = 255 - bb;
}
document.write(thetext.charAt(i).fontcolor(tohex[rr]+tohex[gg]+tohex[bb]));
}
}
else
document.write(thetext); // unrecognized browser, better not to attempt
anything fancy
}
</SCRIPT>
<DIV align=center>
<B><FONT FACE="arial"
SIZE="6">
<SCRIPT language="JavaScript">
gradient("(Boy Are We in Trouble!)","#fa292f
#fa292f #fa2982 #fb28bc
#fc27f7 #fb28bc #fa2982
#fa2982 #fa292f #fa292f ");
document.write("</FONT></B><BR>");
</SCRIPT>
</DIV>
<BR>
<img
src=http://i272.photobucket.com/albums/jj162/BobiSu/PogoGames_subfolders/Bowling/bowlingsplite.jpg><br><br><br>
<IMG src="http://i272.photobucket.com/albums/jj162/BobiSu/DivazLogoLg3B150.jpg"><br><br><br>
</textarea>
</td></tr></table>
</body>
</html>