Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Color Schemes in ASP pages - HOWTO ? 1

Status
Not open for further replies.

Deadline

Programmer
Feb 28, 2001
367
US
Hi,
I am developing a Cafeteria Menu entry interface.

So far so good. No problems. But now there is this new requirement:

The client needs to implement color schemes. Like the page background in a color, cafeteria name in a color, the TABLEs of Menus in a different color etc..

And they want it to be editable, so that they can choose different color schemes for every week or so...

How to implement this ?
Thank you...
RR

 
define your color scheme via CSS.

create an admin page, where the user can change the color schemes as necessary.

once the admin page is submitted, write a new CSS file via FSO, and there you have it.

fully updatable color schemes, as user defined.

hth
leo leo
 
That helped Leo... Thanks..
But, how to present a color selection interface to the user ?

Is it possible in ASP to fire that color dialog we see across windows programs ?

Thank you...
RR

 
Can you point to a site that discusses a similar problem ?


Thank you...
RR

 
I coded something very similar to this for an intranet application here. maybe this will help you.

If you want the hex color images, tell me and I'll zip em up to you.

((popup window))
<HTML>
<HEAD>
<META NAME=&quot;GENERATOR&quot; Content=&quot;Microsoft Visual Studio 6.0&quot;>
<TITLE>choose a color</TITLE>
<!--
color choosing script by leo mendoza 07/17/2001
to be used in the intranet environment, to allow
graphic designers better control over color palette development.
-->
<script language=&quot;javascript&quot;>
//plugs in color to the appropriate box
function plugColor(hexCol){
var d = document.chooseColor, light = document.chooseColor.hue[0].checked;
if (light) d.light.value = hexCol;
else d.dark.value = hexCol;
}

function processForm(){
var d = document.chooseColor, lightHex = escape(d.light.value), darkHex = escape(d.dark.value);
window.open(&quot;index.asp?dkC=&quot; + darkHex + &quot;&ltC=&quot; + lightHex,&quot;template&quot;);
}
</script>
</HEAD>
<BODY>
<form name=&quot;chooseColor&quot;>
Show as: light <input type=&quot;radio&quot; name=&quot;hue&quot; value=&quot;light&quot; checked> or dark <input type=&quot;radio&quot; name=&quot;hue&quot; value=&quot;dark&quot;><p>
<table border=0 cellpadding=0 cellspacing=0>
<tr>
<td>
<a href=&quot;javascript:plugColor('#330000')&quot;>
<img src=&quot;images/330000.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#660000')&quot;>
<img src=&quot;images/660000.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#663333')&quot;>
<img src=&quot;images/663333.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#996666')&quot;>
<img src=&quot;images/996666.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc9999')&quot;>
<img src=&quot;images/cc9999.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ffcccc')&quot;>
<img src=&quot;images/ffcccc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff9999')&quot;>
<img src=&quot;images/ff9999.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc6666')&quot;>
<img src=&quot;images/cc6666.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff6666')&quot;>
<img src=&quot;images/ff6666.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff3300')&quot;>
<img src=&quot;images/ff3300.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff3333')&quot;>
<img src=&quot;images/ff3333.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff0000')&quot;>
<img src=&quot;images/ff0000.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc3333')&quot;>
<img src=&quot;images/cc3333.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc3300')&quot;>
<img src=&quot;images/cc3300.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc0000')&quot;>
<img src=&quot;images/cc0000.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#993300')&quot;>
<img src=&quot;images/993300.gif&quot; width=10 height=12 border=0></a></td>
</tr>
<tr>
<td>
<a href=&quot;javascript:plugColor('#990000')&quot;>
<img src=&quot;images/990000.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#993333')&quot;>
<img src=&quot;images/993333.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc6633')&quot;>
<img src=&quot;images/cc6633.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc6600')&quot;>
<img src=&quot;images/cc6600.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff6633')&quot;>
<img src=&quot;images/ff6633.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff6600')&quot;>
<img src=&quot;images/ff6600.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff9900')&quot;>
<img src=&quot;images/ff9900.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff9933')&quot;>
<img src=&quot;images/ff9933.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff9966')&quot;>
<img src=&quot;images/ff9966.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ffcc99')&quot;>
<img src=&quot;images/ffcc99.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc9966')&quot;>
<img src=&quot;images/cc9966.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc9933')&quot;>
<img src=&quot;images/cc9933.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc9900')&quot;>
<img src=&quot;images/cc9900.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#996633')&quot;>
<img src=&quot;images/996633.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#996600')&quot;>
<img src=&quot;images/996600.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#663300')&quot;>
<img src=&quot;images/663300.gif&quot; width=10 height=12 border=0></a></td>
</tr>
<tr>
<td>
<a href=&quot;javascript:plugColor('#ffcc00')&quot;>
<img src=&quot;images/ffcc00.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ffcc33')&quot;>
<img src=&quot;images/ffcc33.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ffcc66')&quot;>
<img src=&quot;images/ffcc66.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ffff00')&quot;>
<img src=&quot;images/ffff00.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ffff66')&quot;>
<img src=&quot;images/ffff33.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ffff66')&quot;>
<img src=&quot;images/ffff66.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ffff99')&quot;>
<img src=&quot;images/ffff99.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ffffcc')&quot;>
<img src=&quot;images/ffffcc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cccc66')&quot;>
<img src=&quot;images/cccc66.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cccc33')&quot;>
<img src=&quot;images/cccc33.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cccc00')&quot;>
<img src=&quot;images/cccc00.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#999900')&quot;>
<img src=&quot;images/999900.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#999933')&quot;>
<img src=&quot;images/999933.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cccc99')&quot;>
<img src=&quot;images/cccc99.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#999966')&quot;>
<img src=&quot;images/999966.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#333300')&quot;>
<img src=&quot;images/333300.gif&quot; width=10 height=12 border=0></a></td>
</tr>
<tr>
<td>
<a href=&quot;javascript:plugColor('#666600')&quot;>
<img src=&quot;images/666600.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#666633')&quot;>
<img src=&quot;images/666633.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ccff00')&quot;>
<img src=&quot;images/ccff00.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ccff33')&quot;>
<img src=&quot;images/ccff33.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ccff66')&quot;>
<img src=&quot;images/ccff66.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#99ff00')&quot;>
<img src=&quot;images/99ff00.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#99ff33')&quot;>
<img src=&quot;images/99ff33.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#66ff00')&quot;>
<img src=&quot;images/66ff00.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#99ff66')&quot;>
<img src=&quot;images/99ff66.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ccff99')&quot;>
<img src=&quot;images/ccff99.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#99cc66')&quot;>
<img src=&quot;images/99cc66.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#99cc33')&quot;>
<img src=&quot;images/99cc33.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#99cc00')&quot;>
<img src=&quot;images/99cc00.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#669933')&quot;>
<img src=&quot;images/669933.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#669900')&quot;>
<img src=&quot;images/669900.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#336633')&quot;>
<img src=&quot;images/336633.gif&quot; width=10 height=12 border=0></a></td>
</tr>
<tr>
<td>
<a href=&quot;javascript:plugColor('#336600')&quot;>
<img src=&quot;images/336600.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#339900')&quot;>
<img src=&quot;images/339900.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#66cc00')&quot;>
<img src=&quot;images/66cc00.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#66cc33')&quot;>
<img src=&quot;images/66cc33.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#66ff33')&quot;>
<img src=&quot;images/66ff33.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#33ff00')&quot;>
<img src=&quot;images/33ff00.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#33ff33')&quot;>
<img src=&quot;images/33ff33.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#00ff00')&quot;>
<img src=&quot;images/00ff00.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#66ff66')&quot;>
<img src=&quot;images/66ff66.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#99ff99')&quot;>
<img src=&quot;images/99ff99.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ccffcc')&quot;>
<img src=&quot;images/ccffcc.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#66cc66')&quot;>
<img src=&quot;images/66cc66.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#33cc33')&quot;>
<img src=&quot;images/33cc33.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#00cc00')&quot;>
<img src=&quot;images/00cc00.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#33cc00')&quot;>
<img src=&quot;images/33cc00.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#339933')&quot;>
<img src=&quot;images/339933.gif&quot; width=10 height=12 border=0></a></td>
</tr>
<tr>
<td>
<a href=&quot;javascript:plugColor('#003300')&quot;>
<img src=&quot;images/003300.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#006600')&quot;>
<img src=&quot;images/006600.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#009900')&quot;>
<img src=&quot;images/009900.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#009933')&quot;>
<img src=&quot;images/009933.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#339966')&quot;>
<img src=&quot;images/339966.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#669966')&quot;>
<img src=&quot;images/669966.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#99cc99')&quot;>
<img src=&quot;images/99cc99.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#00ff33')&quot;>
<img src=&quot;images/00ff33.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#00ff66')&quot;>
<img src=&quot;images/00ff66.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#33ff66')&quot;>
<img src=&quot;images/33ff66.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#66ff99')&quot;>
<img src=&quot;images/66ff99.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#33ff99')&quot;>
<img src=&quot;images/33ff99.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#00ff99')&quot;>
<img src=&quot;images/00ff99.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#00cc66')&quot;>
<img src=&quot;images/00cc66.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#33cc66')&quot;>
<img src=&quot;images/33cc66.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#00cc33')&quot;>
<img src=&quot;images/00cc33.gif&quot; width=10 height=12 border=0></a></td>
</tr>
<tr>
<td>
<a href=&quot;javascript:plugColor('#006633')&quot;>
<img src=&quot;images/006633.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#009966')&quot;>
<img src=&quot;images/009966.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#00cc99')&quot;>
<img src=&quot;images/00cc99.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#33cc99')&quot;>
<img src=&quot;images/33cc99.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#66cc99')&quot;>
<img src=&quot;images/66cc99.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#99ffcc')&quot;>
<img src=&quot;images/99ffcc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#66ffcc')&quot;>
<img src=&quot;images/66ffcc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#33ffcc')&quot;>
<img src=&quot;images/33ffcc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#00ffcc')&quot;>
<img src=&quot;images/00ffcc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#00ffff')&quot;>
<img src=&quot;images/00ffff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#33ffff')&quot;>
<img src=&quot;images/33ffff.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#66ffff')&quot;>
<img src=&quot;images/66ffff.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#99ffff')&quot;>
<img src=&quot;images/99ffff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#66cccc')&quot;>
<img src=&quot;images/66cccc.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#33cccc')&quot;>
<img src=&quot;images/33cccc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#00cccc')&quot;>
<img src=&quot;images/00cccc.gif&quot; width=10 height=12 border=0></a></td>
</tr>
<tr>
<td>
<a href=&quot;javascript:plugColor('#006666')&quot;>
<img src=&quot;images/006666.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#336666')&quot;>
<img src=&quot;images/336666.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#009999')&quot;>
<img src=&quot;images/009999.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#339999')&quot;>
<img src=&quot;images/339999.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#669999')&quot;>
<img src=&quot;images/669999.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#99cccc')&quot;>
<img src=&quot;images/99cccc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ccffff')&quot;>
<img src=&quot;images/ccffff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#99ccff')&quot;>
<img src=&quot;images/99ccff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#66ccff')&quot;>
<img src=&quot;images/66ccff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#33ccff')&quot;>
<img src=&quot;images/33ccff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#00ccff')&quot;>
<img src=&quot;images/00ccff.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#0099ff')&quot;>
<img src=&quot;images/0099ff.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#3399ff')&quot;>
<img src=&quot;images/3399ff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#0099cc')&quot;>
<img src=&quot;images/0099cc.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#3399cc')&quot;>
<img src=&quot;images/3399cc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#006699')&quot;>
<img src=&quot;images/006699.gif&quot; width=10 height=12 border=0></a></td>
</tr>
<tr>
<td>
<a href=&quot;javascript:plugColor('#003333')&quot;>
<img src=&quot;images/003333.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#003366')&quot;>
<img src=&quot;images/003366.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#003399')&quot;>
<img src=&quot;images/003399.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#0033cc')&quot;>
<img src=&quot;images/0033cc.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#0033ff')&quot;>
<img src=&quot;images/0033ff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#0066cc')&quot;>
<img src=&quot;images/0066cc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#3366cc')&quot;>
<img src=&quot;images/3366cc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#336699')&quot;>
<img src=&quot;images/336699.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#6699cc')&quot;>
<img src=&quot;images/6699cc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#6699ff')&quot;>
<img src=&quot;images/6699ff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#0066ff')&quot;>
<img src=&quot;images/0066ff.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#3366ff')&quot;>
<img src=&quot;images/3366ff.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#3333ff')&quot;>
<img src=&quot;images/3333ff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#3333cc')&quot;>
<img src=&quot;images/3333cc.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#333399')&quot;>
<img src=&quot;images/333399.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#333366')&quot;>
<img src=&quot;images/333366.gif&quot; width=10 height=12 border=0></a></td>
</tr>
<tr>
<td>
<a href=&quot;javascript:plugColor('#000033')&quot;>
<img src=&quot;images/000033.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#000066')&quot;>
<img src=&quot;images/000066.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#000099')&quot;>
<img src=&quot;images/000099.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#0000cc')&quot;>
<img src=&quot;images/0000cc.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#0000ff')&quot;>
<img src=&quot;images/0000ff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#6666ff')&quot;>
<img src=&quot;images/6666ff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#6666cc')&quot;>
<img src=&quot;images/6666cc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#666699')&quot;>
<img src=&quot;images/666699.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#9999cc')&quot;>
<img src=&quot;images/9999cc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ccccff')&quot;>
<img src=&quot;images/ccccff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#9999ff')&quot;>
<img src=&quot;images/9999ff.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#6633ff')&quot;>
<img src=&quot;images/6633ff.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#6600ff')&quot;>
<img src=&quot;images/6600ff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#3300ff')&quot;>
<img src=&quot;images/3300ff.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#3300cc')&quot;>
<img src=&quot;images/3300cc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#330099')&quot;>
<img src=&quot;images/330099.gif&quot; width=10 height=12 border=0></a></td>
</tr>
<tr>
<td>
<a href=&quot;javascript:plugColor('#330066')&quot;>
<img src=&quot;images/330066.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#6633cc')&quot;>
<img src=&quot;images/6633cc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#6600cc')&quot;>
<img src=&quot;images/6600cc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#9900cc')&quot;>
<img src=&quot;images/9900cc.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#9933cc')&quot;>
<img src=&quot;images/9933cc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc00ff')&quot;>
<img src=&quot;images/cc00ff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc33ff')&quot;>
<img src=&quot;images/cc33ff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc66ff')&quot;>
<img src=&quot;images/cc66ff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc99ff')&quot;>
<img src=&quot;images/cc99ff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#9966ff')&quot;>
<img src=&quot;images/9966ff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#9933ff')&quot;>
<img src=&quot;images/9933ff.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#9900ff')&quot;>
<img src=&quot;images/9900ff.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#9966cc')&quot;>
<img src=&quot;images/9966cc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#663399')&quot;>
<img src=&quot;images/663399.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#660099')&quot;>
<img src=&quot;images/660099.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#330033')&quot;>
<img src=&quot;images/330033.gif&quot; width=10 height=12 border=0></a></td>
</tr>
<tr>
<td>
<a href=&quot;javascript:plugColor('#660066')&quot;>
<img src=&quot;images/660066.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#663366')&quot;>
<img src=&quot;images/663366.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#990099')&quot;>
<img src=&quot;images/990099.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#993399')&quot;>
<img src=&quot;images/993399.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc00cc')&quot;>
<img src=&quot;images/cc00cc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc33cc')&quot;>
<img src=&quot;images/cc33cc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc66cc')&quot;>
<img src=&quot;images/cc66cc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#996699')&quot;>
<img src=&quot;images/996699.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc99cc')&quot;>
<img src=&quot;images/cc99cc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ffccff')&quot;>
<img src=&quot;images/ffccff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff99ff')&quot;>
<img src=&quot;images/ff99ff.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff66ff')&quot;>
<img src=&quot;images/ff66ff.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff33ff')&quot;>
<img src=&quot;images/ff33ff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff00ff')&quot;>
<img src=&quot;images/ff00ff.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff33cc')&quot;>
<img src=&quot;images/ff33cc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff00cc')&quot;>
<img src=&quot;images/ff00cc.gif&quot; width=10 height=12 border=0></a></td>
</tr>
<tr>
<td>
<a href=&quot;javascript:plugColor('#660033')&quot;>
<img src=&quot;images/660033.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#990066')&quot;>
<img src=&quot;images/990066.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#993366')&quot;>
<img src=&quot;images/993366.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc0099')&quot;>
<img src=&quot;images/cc0099.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc3399')&quot;>
<img src=&quot;images/cc3399.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff66cc')&quot;>
<img src=&quot;images/ff66cc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc6699')&quot;>
<img src=&quot;images/cc6699.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff99cc')&quot;>
<img src=&quot;images/ff99cc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff6699')&quot;>
<img src=&quot;images/ff6699.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff3399')&quot;>
<img src=&quot;images/ff3399.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff0099')&quot;>
<img src=&quot;images/ff0099.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff3366')&quot;>
<img src=&quot;images/ff3366.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff0066')&quot;>
<img src=&quot;images/ff0066.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff0033')&quot;>
<img src=&quot;images/ff0033.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc0033')&quot;>
<img src=&quot;images/cc0033.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#90033')&quot;>
<img src=&quot;images/990033.gif&quot; width=10 height=12 border=0></a></td>
</tr>
<tr>
<td>
<a href=&quot;javascript:plugColor('#cc0066')&quot;>
<img src=&quot;images/cc0066.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc3366')&quot;>
<img src=&quot;images/cc3366.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#000000')&quot;>
<img src=&quot;images/000000.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#333333')&quot;>
<img src=&quot;images/333333.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#666666')&quot;>
<img src=&quot;images/666666.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#999999')&quot;>
<img src=&quot;images/999999.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cccccc')&quot;>
<img src=&quot;images/cccccc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ffffff')&quot;>
<img src=&quot;images/ffffff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<img src=&quot;images/web216grid_217.gif&quot; width=12 height=12></td>
<td>
<img src=&quot;images/web216grid_218.gif&quot; width=12 height=12></td>
<td>
<img src=&quot;images/web216grid_219.gif&quot; width=13 height=12></td>
<td>
<img src=&quot;images/web216grid_220.gif&quot; width=11 height=12></td>
<td>
<img src=&quot;images/web216grid_221.gif&quot; width=12 height=12></td>
<td>
<img src=&quot;images/web216grid_222.gif&quot; width=13 height=12></td>
<td>
<img src=&quot;images/web216grid_223.gif&quot; width=12 height=12></td>
<td>
<img src=&quot;images/web216grid_224.gif&quot; width=10 height=12></td>
</tr>
</table>
</p>
<table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;>
<tr><td>Light color:</td><td><input type=&quot;text&quot; name=&quot;light&quot; size=&quot;10&quot; value=&quot;#ffffff&quot;></td></tr>
<tr><td>Dark color:</td><td><input type=&quot;text&quot; name=&quot;dark&quot; size=&quot;10&quot; value=&quot;#000000&quot;></td>
<tr><td colspan=&quot;2&quot; align=&quot;right&quot;>
<input type=&quot;button&quot; value=&quot;Show changes&quot; onclick=&quot;javascript:processForm();&quot;></td></tr>
</table>
</form>
</BODY>
</HTML>


((parent ASP page))
<%
Dim color1, color2
color1 = Request(&quot;dkC&quot;)
color2 = Request(&quot;ltC&quot;)

if color1 = &quot;&quot; then color1 = &quot;#FF3333&quot;
if color2 = &quot;&quot; then color2 = &quot;#CCCCCC&quot;
%>
<html>
<head>
<title>Template</title>
<STYLE>
A:link {text-decoration:none; color:#000000}
A:visited {text-decoration:none; color:#333333}
A:hover {text-decoration:underline; color:red}
.BL
{
BACKGROUND-COLOR: #ffffff;
COLOR: #0000FF;
TEXT-DECORATION: none
}
.Color1
{
BACKGROUND-COLOR: <%=color1%>;
}
.Color2
{
BACKGROUND-COLOR: <%=color2%>;
}

</STYLE>
<script language=&quot;javascript&quot;>
window.name = &quot;template&quot;;
</script>
</head>

<body class=&quot;color1&quot;> <!-- Color #1 (dark) goes here -->
<table border=&quot;0&quot; width=&quot;95%&quot; bgcolor=&quot;#FFFFFF&quot; valign=top align=&quot;center&quot;>
<tr>
<td align=center colspan=2>
<table border=&quot;0&quot; width=&quot;100%&quot;>
<tr>
<td width=&quot;100%&quot; align=center>
some image
<form name=&quot;thisForm&quot; Method=post action=deptX.htm>
<TABLE border=0 cellPadding=0 cellSpacing=0 align=center width=&quot;100%&quot; height=&quot;50&quot;>
<tr align=&quot;center&quot;>
<TD height=15 noWrap vAlign=bottom width=&quot;31%&quot;> </TD>
<TD height=15 noWrap vAlign=bottom width=&quot;69%&quot;><B><FONT color=#000000 face=Verdana size=2><A href=&quot;#&quot;
style=&quot;COLOR: #000000; TEXT-DECORATION: none&quot;> Home</A> </FONT></B> <B><FONT color=#000000 face=Verdana size=2>|
<A href=&quot;deptX.htm&quot; style=&quot;COLOR: #000000; TEXT-DECORATION: none&quot;>Departments</A> |
<A href=&quot;deptX.htm&quot; style=&quot;COLOR: #000000; TEXT-DECORATION: none&quot;>Specials</A> |
<a href=&quot;deptX.htm&quot;><img src=&quot;cart.gif&quot; width=&quot;19&quot; height=&quot;15&quot; border=&quot;0&quot;></a><A href=&quot;deptX.htm&quot;
style=&quot;COLOR: #000000; TEXT-DECORATION: none&quot;>Cart</A> | <A href=&quot;deptX.htm&quot;
style=&quot;COLOR: #000000; TEXT-DECORATION: none&quot;>Help</A></FONT></B>
</TD>
</TR>
<TR> <!-- start the product / vendor search form -->
<TD colSpan=2 height=25 noWrap vAlign=top>
<TABLE bgColor=#000000 border=0 cellPadding=0 cellSpacing=0 height=11 width=&quot;100%&quot;>
<TR class=&quot;color2&quot;> <!-- Color #2 (light) goes here -->
<TD height=25 nowrap><B><font color=&quot;#ffffff&quot; face=&quot;Verdana, Arial, Helvetica, sans-serif&quot;>   <font color=&quot;#CC0000&quot;>Search</font></font><FONT color=#ffffff>
<INPUT name=queryFld type=&quot;text&quot; width=&quot;25&quot;>
</FONT></B></TD>
<TD height=25 nowrap><B><font color=&quot;#333333&quot; face=&quot;Verdana, Arial, Helvetica, sans-serif&quot; size=&quot;2&quot;>By:</font><FONT color=#ffffff>
<INPUT name=vendor type=radio value=0>
<font color=&quot;#333333&quot; face=&quot;Verdana, Arial, Helvetica, sans-serif&quot; size=&quot;2&quot;>Product</font></FONT></B></TD>
<TD height=25 nowrap><B><FONT color=#ffffff>
<INPUT name=vendor type=radio value=1>
<font color=&quot;#333333&quot; face=&quot;Verdana, Arial, Helvetica, sans-serif&quot; size=&quot;2&quot;>Manufacturer</font></FONT></B></TD>
<TD align=right height=25 nowrap>  
<INPUT name=Find type=submit value=&quot;Find!&quot;>
</TD>
<TD align=right height=25 width=185> </TD>
</TR>
</TABLE>
</TD>
</TR>
</TABLE>
<!-- end the product / vendor search form -->
</form>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td width=&quot;25%&quot; valign=top>
<table border=&quot;0&quot; width=&quot;100%&quot; cellspacing=&quot;3&quot; valign=top class=&quot;color1&quot; height=&quot;215&quot;> <!-- Color #1 (dark) goes here -->
<tr class=&quot;color2&quot;> <!-- Color #2 (light) goes here -->
<td width=&quot;100%&quot; height=&quot;21&quot;>   <a href=&quot;deptX.htm&quot;>Dept 1</a></td>
</tr>
<tr class=&quot;color2&quot;> <!-- Color #2 (light) goes here -->
<td width=&quot;100%&quot; height=&quot;21&quot;>   <a href=&quot;deptX.htm&quot;>Dept 2</a></td>
</tr>
<tr class=&quot;color2&quot;> <!-- Color #2 (light) goes here -->
<td width=&quot;100%&quot; height=&quot;21&quot;>   <a href=&quot;deptX.htm&quot;>Dept 3</a></td>
</tr>
<tr class=&quot;color2&quot;> <!-- Color #2 (light) goes here -->
<td width=&quot;100%&quot; height=&quot;21&quot;>   <a href=&quot;deptX.htm&quot;>Dept 4</a></td>
</tr>
<tr class=&quot;color2&quot;> <!-- Color #2 (light) goes here -->
<td width=&quot;100%&quot; height=&quot;21&quot;>   <a href=&quot;deptX.htm&quot;>Dept 5</a></td>
</tr>
<tr class=&quot;color2&quot;> <!-- Color #2 (light) goes here -->
<td width=&quot;100%&quot; height=&quot;21&quot;>   <a href=&quot;deptX.htm&quot;>Dept 6</a></td>
</tr>
<tr class=&quot;color2&quot;> <!-- Color #2 (light) goes here -->
<td width=&quot;100%&quot; height=&quot;21&quot;>   <a href=&quot;deptX.htm&quot;>Dept 7</a></td>
</tr>
<tr class=&quot;color2&quot;> <!-- Color #2 (light) goes here -->
<td width=&quot;100%&quot; height=&quot;21&quot;>   <a href=&quot;deptX.htm&quot;>Dept 8</a></td>
</tr>
</table>
</td>
<td width=&quot;75%&quot;>this is the content section </td>
</tr>
<tr>
<td colspan=&quot;2&quot;>
<table border=&quot;0&quot; width=&quot;100%&quot;>
<tr>
<td width=&quot;100%&quot;>
<table border=&quot;0&quot; width=&quot;100%&quot;>
<tr>
<td width=&quot;100%&quot; align=&quot;center&quot;>
<font size=&quot;3&quot; color=&quot;#FF0000&quot;>Your Company</font><font size=&quot;2&quot;><br>
123 Anywhere St.<br>
Someplace, USA<br>
(800) 555-1212</font>
</td>
</tr>
<tr>
<td>
<p align=&quot;center&quot;><font face=&quot;Verdana, Arial, Helvetica, sans-serif&quot; size=-2>
<a href=&quot;deptX.htm&quot;>my account</a>
| <a href=&quot;deptX.htm&quot;>my cart</a>
| <a href=&quot;deptX.htm&quot;>products</a>
| <a href=&quot;mailto:someone@?.com&quot;>contact us</a>
| <a href=&quot;deptX.htm&quot;>search</a>
| <a href=&quot;deptX.htm&quot;>about us</a>
| <a href=&quot;deptX.htm&quot;>home</a></font>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
<script>
</script>
<a href=&quot;#&quot; onclick=&quot;javascript:window.open('chooseColors.htm','colorChoose','height=350,width=225');&quot;>spawn colors</a>
</body>
</html>


hth
leo
 
Leo,
Thank you very much for the time and patience, but the code got chopped off at the end.. Could you please send the code again to festivista97@Yahoo.com ?

This too is a requirment for Intranet and hence, Client-side VBScript is ok with me..

Thank you...
RR

 
I coded something very similar to this for an intranet application here. maybe this will help you.

If you want the hex color images, tell me and I'll zip em up to you.

((popup window))
<HTML>
<HEAD>
<META NAME=&quot;GENERATOR&quot; Content=&quot;Microsoft Visual Studio 6.0&quot;>
<TITLE>choose a color</TITLE>
<!--
color choosing script by leo mendoza 07/17/2001
to be used in the intranet environment, to allow
graphic designers better control over color palette development.
-->
<script language=&quot;javascript&quot;>
//plugs in color to the appropriate box
function plugColor(hexCol){
var d = document.chooseColor, light = document.chooseColor.hue[0].checked;
if (light) d.light.value = hexCol;
else d.dark.value = hexCol;
}

function processForm(){
var d = document.chooseColor, lightHex = escape(d.light.value), darkHex = escape(d.dark.value);
window.open(&quot;index.asp?dkC=&quot; + darkHex + &quot;&ltC=&quot; + lightHex,&quot;template&quot;);
}
</script>
</HEAD>
<BODY>
<form name=&quot;chooseColor&quot;>
Show as: light <input type=&quot;radio&quot; name=&quot;hue&quot; value=&quot;light&quot; checked> or dark <input type=&quot;radio&quot; name=&quot;hue&quot; value=&quot;dark&quot;><p>
<table border=0 cellpadding=0 cellspacing=0>
<tr>
<td>
<a href=&quot;javascript:plugColor('#330000')&quot;>
<img src=&quot;images/330000.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#660000')&quot;>
<img src=&quot;images/660000.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#663333')&quot;>
<img src=&quot;images/663333.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#996666')&quot;>
<img src=&quot;images/996666.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc9999')&quot;>
<img src=&quot;images/cc9999.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ffcccc')&quot;>
<img src=&quot;images/ffcccc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff9999')&quot;>
<img src=&quot;images/ff9999.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc6666')&quot;>
<img src=&quot;images/cc6666.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff6666')&quot;>
<img src=&quot;images/ff6666.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff3300')&quot;>
<img src=&quot;images/ff3300.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff3333')&quot;>
<img src=&quot;images/ff3333.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff0000')&quot;>
<img src=&quot;images/ff0000.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc3333')&quot;>
<img src=&quot;images/cc3333.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc3300')&quot;>
<img src=&quot;images/cc3300.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc0000')&quot;>
<img src=&quot;images/cc0000.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#993300')&quot;>
<img src=&quot;images/993300.gif&quot; width=10 height=12 border=0></a></td>
</tr>
<tr>
<td>
<a href=&quot;javascript:plugColor('#990000')&quot;>
<img src=&quot;images/990000.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#993333')&quot;>
<img src=&quot;images/993333.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc6633')&quot;>
<img src=&quot;images/cc6633.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc6600')&quot;>
<img src=&quot;images/cc6600.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff6633')&quot;>
<img src=&quot;images/ff6633.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff6600')&quot;>
<img src=&quot;images/ff6600.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff9900')&quot;>
<img src=&quot;images/ff9900.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff9933')&quot;>
<img src=&quot;images/ff9933.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff9966')&quot;>
<img src=&quot;images/ff9966.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ffcc99')&quot;>
<img src=&quot;images/ffcc99.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc9966')&quot;>
<img src=&quot;images/cc9966.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc9933')&quot;>
<img src=&quot;images/cc9933.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc9900')&quot;>
<img src=&quot;images/cc9900.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#996633')&quot;>
<img src=&quot;images/996633.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#996600')&quot;>
<img src=&quot;images/996600.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#663300')&quot;>
<img src=&quot;images/663300.gif&quot; width=10 height=12 border=0></a></td>
</tr>
<tr>
<td>
<a href=&quot;javascript:plugColor('#ffcc00')&quot;>
<img src=&quot;images/ffcc00.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ffcc33')&quot;>
<img src=&quot;images/ffcc33.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ffcc66')&quot;>
<img src=&quot;images/ffcc66.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ffff00')&quot;>
<img src=&quot;images/ffff00.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ffff66')&quot;>
<img src=&quot;images/ffff33.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ffff66')&quot;>
<img src=&quot;images/ffff66.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ffff99')&quot;>
<img src=&quot;images/ffff99.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ffffcc')&quot;>
<img src=&quot;images/ffffcc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cccc66')&quot;>
<img src=&quot;images/cccc66.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cccc33')&quot;>
<img src=&quot;images/cccc33.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cccc00')&quot;>
<img src=&quot;images/cccc00.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#999900')&quot;>
<img src=&quot;images/999900.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#999933')&quot;>
<img src=&quot;images/999933.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cccc99')&quot;>
<img src=&quot;images/cccc99.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#999966')&quot;>
<img src=&quot;images/999966.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#333300')&quot;>
<img src=&quot;images/333300.gif&quot; width=10 height=12 border=0></a></td>
</tr>
<tr>
<td>
<a href=&quot;javascript:plugColor('#666600')&quot;>
<img src=&quot;images/666600.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#666633')&quot;>
<img src=&quot;images/666633.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ccff00')&quot;>
<img src=&quot;images/ccff00.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ccff33')&quot;>
<img src=&quot;images/ccff33.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ccff66')&quot;>
<img src=&quot;images/ccff66.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#99ff00')&quot;>
<img src=&quot;images/99ff00.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#99ff33')&quot;>
<img src=&quot;images/99ff33.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#66ff00')&quot;>
<img src=&quot;images/66ff00.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#99ff66')&quot;>
<img src=&quot;images/99ff66.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ccff99')&quot;>
<img src=&quot;images/ccff99.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#99cc66')&quot;>
<img src=&quot;images/99cc66.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#99cc33')&quot;>
<img src=&quot;images/99cc33.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#99cc00')&quot;>
<img src=&quot;images/99cc00.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#669933')&quot;>
<img src=&quot;images/669933.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#669900')&quot;>
<img src=&quot;images/669900.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#336633')&quot;>
<img src=&quot;images/336633.gif&quot; width=10 height=12 border=0></a></td>
</tr>
<tr>
<td>
<a href=&quot;javascript:plugColor('#336600')&quot;>
<img src=&quot;images/336600.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#339900')&quot;>
<img src=&quot;images/339900.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#66cc00')&quot;>
<img src=&quot;images/66cc00.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#66cc33')&quot;>
<img src=&quot;images/66cc33.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#66ff33')&quot;>
<img src=&quot;images/66ff33.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#33ff00')&quot;>
<img src=&quot;images/33ff00.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#33ff33')&quot;>
<img src=&quot;images/33ff33.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#00ff00')&quot;>
<img src=&quot;images/00ff00.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#66ff66')&quot;>
<img src=&quot;images/66ff66.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#99ff99')&quot;>
<img src=&quot;images/99ff99.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ccffcc')&quot;>
<img src=&quot;images/ccffcc.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#66cc66')&quot;>
<img src=&quot;images/66cc66.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#33cc33')&quot;>
<img src=&quot;images/33cc33.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#00cc00')&quot;>
<img src=&quot;images/00cc00.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#33cc00')&quot;>
<img src=&quot;images/33cc00.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#339933')&quot;>
<img src=&quot;images/339933.gif&quot; width=10 height=12 border=0></a></td>
</tr>
<tr>
<td>
<a href=&quot;javascript:plugColor('#003300')&quot;>
<img src=&quot;images/003300.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#006600')&quot;>
<img src=&quot;images/006600.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#009900')&quot;>
<img src=&quot;images/009900.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#009933')&quot;>
<img src=&quot;images/009933.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#339966')&quot;>
<img src=&quot;images/339966.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#669966')&quot;>
<img src=&quot;images/669966.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#99cc99')&quot;>
<img src=&quot;images/99cc99.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#00ff33')&quot;>
<img src=&quot;images/00ff33.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#00ff66')&quot;>
<img src=&quot;images/00ff66.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#33ff66')&quot;>
<img src=&quot;images/33ff66.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#66ff99')&quot;>
<img src=&quot;images/66ff99.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#33ff99')&quot;>
<img src=&quot;images/33ff99.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#00ff99')&quot;>
<img src=&quot;images/00ff99.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#00cc66')&quot;>
<img src=&quot;images/00cc66.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#33cc66')&quot;>
<img src=&quot;images/33cc66.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#00cc33')&quot;>
<img src=&quot;images/00cc33.gif&quot; width=10 height=12 border=0></a></td>
</tr>
<tr>
<td>
<a href=&quot;javascript:plugColor('#006633')&quot;>
<img src=&quot;images/006633.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#009966')&quot;>
<img src=&quot;images/009966.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#00cc99')&quot;>
<img src=&quot;images/00cc99.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#33cc99')&quot;>
<img src=&quot;images/33cc99.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#66cc99')&quot;>
<img src=&quot;images/66cc99.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#99ffcc')&quot;>
<img src=&quot;images/99ffcc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#66ffcc')&quot;>
<img src=&quot;images/66ffcc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#33ffcc')&quot;>
<img src=&quot;images/33ffcc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#00ffcc')&quot;>
<img src=&quot;images/00ffcc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#00ffff')&quot;>
<img src=&quot;images/00ffff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#33ffff')&quot;>
<img src=&quot;images/33ffff.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#66ffff')&quot;>
<img src=&quot;images/66ffff.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#99ffff')&quot;>
<img src=&quot;images/99ffff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#66cccc')&quot;>
<img src=&quot;images/66cccc.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#33cccc')&quot;>
<img src=&quot;images/33cccc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#00cccc')&quot;>
<img src=&quot;images/00cccc.gif&quot; width=10 height=12 border=0></a></td>
</tr>
<tr>
<td>
<a href=&quot;javascript:plugColor('#006666')&quot;>
<img src=&quot;images/006666.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#336666')&quot;>
<img src=&quot;images/336666.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#009999')&quot;>
<img src=&quot;images/009999.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#339999')&quot;>
<img src=&quot;images/339999.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#669999')&quot;>
<img src=&quot;images/669999.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#99cccc')&quot;>
<img src=&quot;images/99cccc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ccffff')&quot;>
<img src=&quot;images/ccffff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#99ccff')&quot;>
<img src=&quot;images/99ccff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#66ccff')&quot;>
<img src=&quot;images/66ccff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#33ccff')&quot;>
<img src=&quot;images/33ccff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#00ccff')&quot;>
<img src=&quot;images/00ccff.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#0099ff')&quot;>
<img src=&quot;images/0099ff.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#3399ff')&quot;>
<img src=&quot;images/3399ff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#0099cc')&quot;>
<img src=&quot;images/0099cc.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#3399cc')&quot;>
<img src=&quot;images/3399cc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#006699')&quot;>
<img src=&quot;images/006699.gif&quot; width=10 height=12 border=0></a></td>
</tr>
<tr>
<td>
<a href=&quot;javascript:plugColor('#003333')&quot;>
<img src=&quot;images/003333.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#003366')&quot;>
<img src=&quot;images/003366.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#003399')&quot;>
<img src=&quot;images/003399.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#0033cc')&quot;>
<img src=&quot;images/0033cc.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#0033ff')&quot;>
<img src=&quot;images/0033ff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#0066cc')&quot;>
<img src=&quot;images/0066cc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#3366cc')&quot;>
<img src=&quot;images/3366cc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#336699')&quot;>
<img src=&quot;images/336699.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#6699cc')&quot;>
<img src=&quot;images/6699cc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#6699ff')&quot;>
<img src=&quot;images/6699ff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#0066ff')&quot;>
<img src=&quot;images/0066ff.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#3366ff')&quot;>
<img src=&quot;images/3366ff.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#3333ff')&quot;>
<img src=&quot;images/3333ff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#3333cc')&quot;>
<img src=&quot;images/3333cc.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#333399')&quot;>
<img src=&quot;images/333399.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#333366')&quot;>
<img src=&quot;images/333366.gif&quot; width=10 height=12 border=0></a></td>
</tr>
<tr>
<td>
<a href=&quot;javascript:plugColor('#000033')&quot;>
<img src=&quot;images/000033.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#000066')&quot;>
<img src=&quot;images/000066.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#000099')&quot;>
<img src=&quot;images/000099.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#0000cc')&quot;>
<img src=&quot;images/0000cc.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#0000ff')&quot;>
<img src=&quot;images/0000ff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#6666ff')&quot;>
<img src=&quot;images/6666ff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#6666cc')&quot;>
<img src=&quot;images/6666cc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#666699')&quot;>
<img src=&quot;images/666699.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#9999cc')&quot;>
<img src=&quot;images/9999cc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ccccff')&quot;>
<img src=&quot;images/ccccff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#9999ff')&quot;>
<img src=&quot;images/9999ff.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#6633ff')&quot;>
<img src=&quot;images/6633ff.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#6600ff')&quot;>
<img src=&quot;images/6600ff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#3300ff')&quot;>
<img src=&quot;images/3300ff.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#3300cc')&quot;>
<img src=&quot;images/3300cc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#330099')&quot;>
<img src=&quot;images/330099.gif&quot; width=10 height=12 border=0></a></td>
</tr>
<tr>
<td>
<a href=&quot;javascript:plugColor('#330066')&quot;>
<img src=&quot;images/330066.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#6633cc')&quot;>
<img src=&quot;images/6633cc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#6600cc')&quot;>
<img src=&quot;images/6600cc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#9900cc')&quot;>
<img src=&quot;images/9900cc.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#9933cc')&quot;>
<img src=&quot;images/9933cc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc00ff')&quot;>
<img src=&quot;images/cc00ff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc33ff')&quot;>
<img src=&quot;images/cc33ff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc66ff')&quot;>
<img src=&quot;images/cc66ff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc99ff')&quot;>
<img src=&quot;images/cc99ff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#9966ff')&quot;>
<img src=&quot;images/9966ff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#9933ff')&quot;>
<img src=&quot;images/9933ff.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#9900ff')&quot;>
<img src=&quot;images/9900ff.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#9966cc')&quot;>
<img src=&quot;images/9966cc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#663399')&quot;>
<img src=&quot;images/663399.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#660099')&quot;>
<img src=&quot;images/660099.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#330033')&quot;>
<img src=&quot;images/330033.gif&quot; width=10 height=12 border=0></a></td>
</tr>
<tr>
<td>
<a href=&quot;javascript:plugColor('#660066')&quot;>
<img src=&quot;images/660066.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#663366')&quot;>
<img src=&quot;images/663366.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#990099')&quot;>
<img src=&quot;images/990099.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#993399')&quot;>
<img src=&quot;images/993399.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc00cc')&quot;>
<img src=&quot;images/cc00cc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc33cc')&quot;>
<img src=&quot;images/cc33cc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc66cc')&quot;>
<img src=&quot;images/cc66cc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#996699')&quot;>
<img src=&quot;images/996699.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc99cc')&quot;>
<img src=&quot;images/cc99cc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ffccff')&quot;>
<img src=&quot;images/ffccff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff99ff')&quot;>
<img src=&quot;images/ff99ff.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff66ff')&quot;>
<img src=&quot;images/ff66ff.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff33ff')&quot;>
<img src=&quot;images/ff33ff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff00ff')&quot;>
<img src=&quot;images/ff00ff.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff33cc')&quot;>
<img src=&quot;images/ff33cc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff00cc')&quot;>
<img src=&quot;images/ff00cc.gif&quot; width=10 height=12 border=0></a></td>
</tr>
<tr>
<td>
<a href=&quot;javascript:plugColor('#660033')&quot;>
<img src=&quot;images/660033.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#990066')&quot;>
<img src=&quot;images/990066.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#993366')&quot;>
<img src=&quot;images/993366.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc0099')&quot;>
<img src=&quot;images/cc0099.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc3399')&quot;>
<img src=&quot;images/cc3399.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff66cc')&quot;>
<img src=&quot;images/ff66cc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc6699')&quot;>
<img src=&quot;images/cc6699.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff99cc')&quot;>
<img src=&quot;images/ff99cc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff6699')&quot;>
<img src=&quot;images/ff6699.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff3399')&quot;>
<img src=&quot;images/ff3399.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff0099')&quot;>
<img src=&quot;images/ff0099.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff3366')&quot;>
<img src=&quot;images/ff3366.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff0066')&quot;>
<img src=&quot;images/ff0066.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ff0033')&quot;>
<img src=&quot;images/ff0033.gif&quot; width=13 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc0033')&quot;>
<img src=&quot;images/cc0033.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#90033')&quot;>
<img src=&quot;images/990033.gif&quot; width=10 height=12 border=0></a></td>
</tr>
<tr>
<td>
<a href=&quot;javascript:plugColor('#cc0066')&quot;>
<img src=&quot;images/cc0066.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cc3366')&quot;>
<img src=&quot;images/cc3366.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#000000')&quot;>
<img src=&quot;images/000000.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#333333')&quot;>
<img src=&quot;images/333333.gif&quot; width=11 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#666666')&quot;>
<img src=&quot;images/666666.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#999999')&quot;>
<img src=&quot;images/999999.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#cccccc')&quot;>
<img src=&quot;images/cccccc.gif&quot; width=12 height=12 border=0></a></td>
<td>
<a href=&quot;javascript:plugColor('#ffffff')&quot;>
<img src=&quot;images/ffffff.gif&quot; width=12 height=12 border=0></a></td>
<td>
<img src=&quot;images/web216grid_217.gif&quot; width=12 height=12></td>
<td>
<img src=&quot;images/web216grid_218.gif&quot; width=12 height=12></td>
<td>
<img src=&quot;images/web216grid_219.gif&quot; width=13 height=12></td>
<td>
<img src=&quot;images/web216grid_220.gif&quot; width=11 height=12></td>
<td>
<img src=&quot;images/web216grid_221.gif&quot; width=12 height=12></td>
<td>
<img src=&quot;images/web216grid_222.gif&quot; width=13 height=12></td>
<td>
<img src=&quot;images/web216grid_223.gif&quot; width=12 height=12></td>
<td>
<img src=&quot;images/web216grid_224.gif&quot; width=10 height=12></td>
</tr>
</table>
</p>
<table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;>
<tr><td>Light color:</td><td><input type=&quot;text&quot; name=&quot;light&quot; size=&quot;10&quot; value=&quot;#ffffff&quot;></td></tr>
<tr><td>Dark color:</td><td><input type=&quot;text&quot; name=&quot;dark&quot; size=&quot;10&quot; value=&quot;#000000&quot;></td>
<tr><td colspan=&quot;2&quot; align=&quot;right&quot;>
<input type=&quot;button&quot; value=&quot;Show changes&quot; onclick=&quot;javascript:processForm();&quot;></td></tr>
</table>
</form>
</BODY>
</HTML>


((parent ASP page))
<%
Dim color1, color2
color1 = Request(&quot;dkC&quot;)
color2 = Request(&quot;ltC&quot;)

if color1 = &quot;&quot; then color1 = &quot;#FF3333&quot;
if color2 = &quot;&quot; then color2 = &quot;#CCCCCC&quot;
%>
<html>
<head>
<title>Template</title>
<STYLE>
A:link {text-decoration:none; color:#000000}
A:visited {text-decoration:none; color:#333333}
A:hover {text-decoration:underline; color:red}
.BL
{
BACKGROUND-COLOR: #ffffff;
COLOR: #0000FF;
TEXT-DECORATION: none
}
.Color1
{
BACKGROUND-COLOR: <%=color1%>;
}
.Color2
{
BACKGROUND-COLOR: <%=color2%>;
}

</STYLE>
<script language=&quot;javascript&quot;>
window.name = &quot;template&quot;;
</script>
</head>

<body class=&quot;color1&quot;> <!-- Color #1 (dark) goes here -->
<table border=&quot;0&quot; width=&quot;95%&quot; bgcolor=&quot;#FFFFFF&quot; valign=top align=&quot;center&quot;>
<tr>
<td align=center colspan=2>
<table border=&quot;0&quot; width=&quot;100%&quot;>
<tr>
<td width=&quot;100%&quot; align=center>
some image
<form name=&quot;thisForm&quot; Method=post action=deptX.htm>
<TABLE border=0 cellPadding=0 cellSpacing=0 align=center width=&quot;100%&quot; height=&quot;50&quot;>
<tr align=&quot;center&quot;>
<TD height=15 noWrap vAlign=bottom width=&quot;31%&quot;>&nbsp;</TD>
<TD height=15 noWrap vAlign=bottom width=&quot;69%&quot;><B><FONT color=#000000 face=Verdana size=2><A href=&quot;#&quot;
style=&quot;COLOR: #000000; TEXT-DECORATION: none&quot;> Home</A> </FONT></B> <B><FONT color=#000000 face=Verdana size=2>|
<A href=&quot;deptX.htm&quot; style=&quot;COLOR: #000000; TEXT-DECORATION: none&quot;>Departments</A> |
<A href=&quot;deptX.htm&quot; style=&quot;COLOR: #000000; TEXT-DECORATION: none&quot;>Specials</A> |
<a href=&quot;deptX.htm&quot;><img src=&quot;cart.gif&quot; width=&quot;19&quot; height=&quot;15&quot; border=&quot;0&quot;></a><A href=&quot;deptX.htm&quot;
style=&quot;COLOR: #000000; TEXT-DECORATION: none&quot;>Cart</A> | <A href=&quot;deptX.htm&quot;
style=&quot;COLOR: #000000; TEXT-DECORATION: none&quot;>Help</A></FONT></B>
</TD>
</TR>
<TR> <!-- start the product / vendor search form -->
<TD colSpan=2 height=25 noWrap vAlign=top>
<TABLE bgColor=#000000 border=0 cellPadding=0 cellSpacing=0 height=11 width=&quot;100%&quot;>
<TR class=&quot;color2&quot;> <!-- Color #2 (light) goes here -->
<TD height=25 nowrap><B><font color=&quot;#ffffff&quot; face=&quot;Verdana, Arial, Helvetica, sans-serif&quot;>&nbsp;&nbsp;&nbsp;<font color=&quot;#CC0000&quot;>Search</font></font><FONT color=#ffffff>
<INPUT name=queryFld type=&quot;text&quot; width=&quot;25&quot;>
</FONT></B></TD>
<TD height=25 nowrap><B><font color=&quot;#333333&quot; face=&quot;Verdana, Arial, Helvetica, sans-serif&quot; size=&quot;2&quot;>By:</font><FONT color=#ffffff>
<INPUT name=vendor type=radio value=0>
<font color=&quot;#333333&quot; face=&quot;Verdana, Arial, Helvetica, sans-serif&quot; size=&quot;2&quot;>Product</font></FONT></B></TD>
<TD height=25 nowrap><B><FONT color=#ffffff>
<INPUT name=vendor type=radio value=1>
<font color=&quot;#333333&quot; face=&quot;Verdana, Arial, Helvetica, sans-serif&quot; size=&quot;2&quot;>Manufacturer</font></FONT></B></TD>
<TD align=right height=25 nowrap>&nbsp;&nbsp;
<INPUT name=Find type=submit value=&quot;Find!&quot;>
</TD>
<TD align=right height=25 width=185>&nbsp;</TD>
</TR>
</TABLE>
</TD>
</TR>
</TABLE>
<!-- end the product / vendor search form -->
</form>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td width=&quot;25%&quot; valign=top>
<table border=&quot;0&quot; width=&quot;100%&quot; cellspacing=&quot;3&quot; valign=top class=&quot;color1&quot; height=&quot;215&quot;> <!-- Color #1 (dark) goes here -->
<tr class=&quot;color2&quot;> <!-- Color #2 (light) goes here -->
<td width=&quot;100%&quot; height=&quot;21&quot;>&nbsp;&nbsp; <a href=&quot;deptX.htm&quot;>Dept 1</a></td>
</tr>
<tr class=&quot;color2&quot;> <!-- Color #2 (light) goes here -->
<td width=&quot;100%&quot; height=&quot;21&quot;>&nbsp;&nbsp; <a href=&quot;deptX.htm&quot;>Dept 2</a></td>
</tr>
<tr class=&quot;color2&quot;> <!-- Color #2 (light) goes here -->
<td width=&quot;100%&quot; height=&quot;21&quot;>&nbsp;&nbsp; <a href=&quot;deptX.htm&quot;>Dept 3</a></td>
</tr>
<tr class=&quot;color2&quot;> <!-- Color #2 (light) goes here -->
<td width=&quot;100%&quot; height=&quot;21&quot;>&nbsp;&nbsp; <a href=&quot;deptX.htm&quot;>Dept 4</a></td>
</tr>
<tr class=&quot;color2&quot;> <!-- Color #2 (light) goes here -->
<td width=&quot;100%&quot; height=&quot;21&quot;>&nbsp;&nbsp; <a href=&quot;deptX.htm&quot;>Dept 5</a></td>
</tr>
<tr class=&quot;color2&quot;> <!-- Color #2 (light) goes here -->
<td width=&quot;100%&quot; height=&quot;21&quot;>&nbsp;&nbsp; <a href=&quot;deptX.htm&quot;>Dept 6</a></td>
</tr>
<tr class=&quot;color2&quot;> <!-- Color #2 (light) goes here -->
<td width=&quot;100%&quot; height=&quot;21&quot;>&nbsp;&nbsp; <a href=&quot;deptX.htm&quot;>Dept 7</a></td>
</tr>
<tr class=&quot;color2&quot;> <!-- Color #2 (light) goes here -->
<td width=&quot;100%&quot; height=&quot;21&quot;>&nbsp;&nbsp; <a href=&quot;deptX.htm&quot;>Dept 8</a></td>
</tr>
</table>
</td>
<td width=&quot;75%&quot;>this is the content section </td>
</tr>
<tr>
<td colspan=&quot;2&quot;>
<table border=&quot;0&quot; width=&quot;100%&quot;>
<tr>
<td width=&quot;100%&quot;>
<table border=&quot;0&quot; width=&quot;100%&quot;>
<tr>
<td width=&quot;100%&quot; align=&quot;center&quot;>
<font size=&quot;3&quot; color=&quot;#FF0000&quot;>Your Company</font><font size=&quot;2&quot;><br>
123 Anywhere St.<br>
Someplace, USA<br>
(800) 555-1212</font>
</td>
</tr>
<tr>
<td>
<p align=&quot;center&quot;><font face=&quot;Verdana, Arial, Helvetica, sans-serif&quot; size=-2>
<a href=&quot;deptX.htm&quot;>my account</a>
| <a href=&quot;deptX.htm&quot;>my cart</a>
| <a href=&quot;deptX.htm&quot;>products</a>
| <a href=&quot;mailto:someone@?.com&quot;>contact us</a>
| <a href=&quot;deptX.htm&quot;>search</a>
| <a href=&quot;deptX.htm&quot;>about us</a>
| <a href=&quot;deptX.htm&quot;>home</a></font>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
<script>
</script>
<a href=&quot;#&quot; onclick=&quot;javascript:window.open('chooseColors.htm','colorChoose','height=350,width=225');&quot;>spawn colors</a>
</body>
</html>


hth
leo
 
Leo,
I am extremely sorry, but I think, tek-tips has an upper limit for the number of characters, and hence for the second time too, it got chopped off at the end. Do you have it in your personal site in zip format ? Thank you...
RR

 
yeah - i'll zip it up to you. didn't mean to double post... tek tips cut me off :)
 
yeah - i'll zip it up to you. didn't mean to double post... tek tips cut me off :) and I instinctively hit refresh (thinking i got a bad network connection)

anyhow - i've emailed you two zip files... just change the name from indx to index, and modify as needed.

hth
leo
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top