|
Ok Jim, here you go. This is exactly as it came off of the source page.
It is in two parts the first part goes within, "head /head" the second part goes within, "body /body".
I just haven't figured out yet where exactly it goes in a forum, but I suspect the second part goes into the Signature box in your profile. But at the moment I am not sure where the first part goes.
Note I had to use * in place of < > to get the script to show.
*script language="JavaScript"*
function showEl(name,s)
{
if (document.getElementById)
{
var el = document.getElementById(name);
el.style.display = (s)?"":"none";
}
}
function setMode (mode)
{
var show = true;
switch (mode) {
case 0: g_html=false; show=false;break;
case 1: g_html=false; break;
case 2: g_html=true; break;
}
showEl ("insertcodes", show);
showEl ("textformatting", show);
}
/script
This is the second part.
*script langauge="JavaScript"*
*!-- hide me
var the_cookie = document.cookie;
var the_cookie = unescape(the_cookie);
var broken_cookie = the_cookie.split(";");
for (loop = 0; loop < broken_cookie.length; loop++)
{
var property_value = broken_cookie[loop];
var broken_info = property_value.split("=");
if (broken_info[0] == " ezbuser")
{
document.write("Thank you,!! " + broken_info[1]
+ "Your assistance is greatly appreciated.;
}
}
// show me --*
*/script*
__________________
Cheers
Eaglefeather
My favourite hobby, it seems to me,
Is crashing my PC.
Last edited by Eaglefeather; 01-14-2003 at 12:20 PM.
|