/    Sign up×
Community /Pin to ProfileBookmark

I have a forum and needed a little java help

Hi, i’m new here and hope i can explain myself clearly,

i have a ezboard and want to use java script to put my name in the who’s online section even when i’m offline,

that way when members come to the board they think i’m actually there when i’m not,

i would appreciate any help, thanxx Amanda

to post a comment
JavaScript

13 Comments(s)

Copy linkTweet thisAlerts:
@Khalid_AliJun 25.2003 — I am presuming that your MSB is written in some other programming lang...and the html is generated by that server side app? is that true?

if it is then you will not have control over it unless you do this on the server side.
Copy linkTweet thisAlerts:
@Amanda360authorJun 25.2003 — hi khalid,

i'm a real novice to the world of java scripting but one of the scripters at the ez board help forums said it was possible

heres a little of his post to me

post it in the Javascript Help forum and no doubt one of the scripters will come to your rescue. ?
>
>my idea for the script would be, if whoseonline is empty or does not include/display your username, the script writes your username within the whoseonline as if you are online, if whoseonline has your username in, do nothing.
>


i can post my source code if you need it, honestly i don't know what server side language it uses but i've added all the scripts and css on the client side
Copy linkTweet thisAlerts:
@pyroJun 25.2003 — Yes, post your code, please. Although, as Khalid said, you'd be better off doing it server side, in whichever language ezboard is written in in the first place.
Copy linkTweet thisAlerts:
@Amanda360authorJun 25.2003 — Hello Pyro and thank you for your insight,

heres my board url,

http://pub39.ezboard.com/bhoshossurfshop


i tried to post the source code but its way to much, please forgive some scripting errors i have, i haven't had the time to correct them:o
Copy linkTweet thisAlerts:
@pyroJun 25.2003 — Ok, I took a look at the page... I think something like this should work:

<td bgcolor="#F5F5DC">
<div id="usersonline">
· <A HREF=http://pub39.ezboard.com/ufayevalentine930.showPublicProfile><FONT FACE="Verdana,Arial" SIZE=1>Faye Valentine930</FONT></A></div>
</td>

<script type="text/javascript">
function getUsers() {
online = document.getElementById("usersonline"); //get the reference to the <div>
if (!/Amanda360/.test(online.innerHTML)) { //test if your username is not in the <div>
online.innerHTML += " . <A HREF=http://pub39.ezboard.com/uamanda360.showPublicProfile><FONT FACE="Verdana,Arial" SIZE=1>Amanda360</FONT></A>"; //if not, append it to the end
}
}
window.onload = getUsers; //after page has loaded, run this getUsers function.
</script>
Note that you have to put a <div> around the contents of the users online with an id of "usersonline". The user that I have in there, are just the first one that was on when I visited that page... just to test it, and show you where the users need to go in the above code.
Copy linkTweet thisAlerts:
@Amanda360authorJun 25.2003 — Thank you Pyro, the code works perfectly but i'm an idiot when it comes to placing it,

the html section is divided up into

head - where i have the css

body - where i have my flash movies and most other java scripts

footer -

i placed the code in the head and it put the name at the top of my board, should i add it to the body?

sorry for asking these stupid questions but all this is still new to me

but thanks so much for your typing this code up for me, i appreciate it much
Copy linkTweet thisAlerts:
@pyroJun 25.2003 — It goes in the <body>. Replace this code (Lines 2869-2873):

&lt;td bgcolor="#F5F5DC"&gt;

· &lt;A HREF=http://pub39.ezboard.com/uandroidz1617181920.showPublicProfile&gt;&lt;FONT FACE="Verdana,Arial" SIZE=1&gt;Androidz1617181920&lt;/FONT&gt;&lt;/A&gt; · &lt;A HREF=http://pub39.ezboard.com/bhoshossurfshop.showLocalUserPublicProfile?login=animal2020&gt;&lt;FONT FACE="Verdana,Arial" SIZE=1&gt;Animal2020&lt;/FONT&gt;&lt;/A&gt; · &lt;A HREF=http://pub39.ezboard.com/uamanda360.showPublicProfile&gt;&lt;FONT FACE="Verdana,Arial" SIZE=1&gt;Amanda360&lt;/FONT&gt;&lt;/A&gt;

&lt;/td&gt;


with the code I gave you.
Copy linkTweet thisAlerts:
@Amanda360authorJun 25.2003 — Pyro i found the code you specifiy when i use view source but when i go to put the code in its not there

heres what i see

<***style> body {

background-color: #000000;

font-family: Verdana, Arial, sans-serif;

font-size: 12px;

color: #ffffff

}

td.whosonline {

font-family: Arial, Helvetica, sans-serif;

font-size: 12px;

color: #FFFFFF;

background-color: transparent

}


.whosonline {

font-family: Verdana, Arial, sans-serif;

font-size: 12px;

color: #FFFFFF;

background-color: transparent;

border: solid;

border-width: 4px 6px 4px 6px;

padding-left: 5px;

border-color: #151515 #000000 #000000 #151515

}

.whosonline td {background-color: transparent; border: 0px }

.whosonline font { background-color: transparent; border: 0px }

.whosonline a:link { color: #FF0000}

.whosonline a:visited { color: #FF0000}

.whosonline a:hover { color: #660000}

.whosonline a:hover font{ color: #ffffff}


table {background-color: transparent}

.m {

font-family: Verdana, Arial, sans-serif;

font-size: 14px

}

td {

background-color: transparent;

color: #FFFFFF;

font-family: Verdana, Arial,

sans-serif;

font-size: 12px;

}

td td {

background-color: transparent;

border: solid;

border-width: 4px 6px 4px 6px;

border-color: #151515 #000000 #000000 #151515

}



td td td {border: 0px}

.title {

font-family: Arial, Helvetica, sans-serif;

font-size: 16px;

font-weight: bold;

color: #151b54

}

.headings {

font-family: Verdana, Arial, sans-serif;

font-size: 14px;

font-weight: bold;

color: #FF0000;

text-align: center;

height: 30px;

padding-right: 10px;

padding-left: 10px;

border: solid;

background-color: transparent;

border-width: 4px 6px 4px 6px;

border-color: #151515 #000000 #000000 #151515

}


.communitychest {

background-color:transparent;

color: #FF0000;

border: solid;

border-width: 4px 6px 4px 6px;

font-family: Verdana, Arial, sans-serif;

font-size: 12px;

border-color: #151515 #000000 #000000 #151515


}



.communitychest a:link { color: #FF0000}

.communitychest a:visited { color: #FF0000}

.communitychest a:hover { color: #660000}


font { color: #ffffff}

h4 font { color: #FF0000}

a:link { color: #FF0000}

a:visited { color: #FF0000}

a:hover {color:#660000}

select {

font-family: Verdana, Arial, sans-serif;

font-size: 12px;

color: #FF0000;

background-color: #000000

}

.inputbutton {

font-family: Verdana, Arial, sans-serif;

font-size: 12px;

color: #FFFFFF;

background-color: transparent;

}


.inputbox {font-size: 17px}

</style***>


<***style>

<!--

#glowtext{

filter:glow(color=FFFF00,strength=3);

width:100%;

}

-->

body

{

background-image: url();

background-attachment: fixed

}


.insertbutton, .formatbutton, .fontbutton {

background-color: #000000

;

color: #FFFFFF;

}

.fontselect {

background-color: #000000

;

color: #FFFFFF;

}

#setfont {border: 0px}

</style***>




<***STYLE type="text/css" >

BODY {scrollbar-3dlight-color:6e6a6b;

scrollbar-arrow-color:#6e6a6b;

scrollbar-base-color:#;

scrollbar-track-color:#000000;

scrollbar-face-color:#000000;

scrollbar-shadow-color:#6e6a6b;

scrollbar-highlight-color:#6e6a6b;

scrollbar-darkshadow-color:#6e6a6b;

</style***>


<***style>

.inputbox

{background-color: transparent;

border-bottom: 1px #000000 solid;

border-left: 1px #000000 solid;

border-right: 1px #000000 solid;

border-top: 1px #000000 solid;

color: #ffffff;

font-family: Arial, sans-serif}

</style***>



<***script>

<!--

function land(ref, target)

{

lowtarget=target.toLowerCase();

if (lowtarget=="_self") {window.location=loc;}

else {if (lowtarget=="_
top") {top.location=loc;}

else {if (lowtarget=="_blank") {window.open(loc);}

else {if (lowtarget=="_
parent") {parent.location=loc;}

else {parent.frames[target].location=loc;};

}}}

}

function jump(menu)

{

ref=menu.choice.options[menu.choice.selectedIndex].value;

splitc=ref.lastIndexOf("*
");

target="";

if (splitc!=-1)

{loc=ref.substring(0,splitc);

target=ref.substring(splitc+1,1000);}

else {loc=ref; target="_self";};

if (ref != "") {land(loc,target);}

}

//-->

</script**
*>



<***SCRIPT LANGUAGE="JavaScript">

<!-- hide code

// define pages

flashpage="http://i.i.com.com/cnwk.1d/Ads/3011/11/5/20030620/2/savage_trailer_336x280.swf";

minimumver=6;

manualdetectpage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash";

// detect browser

bName = navigator.appName;

bVer = parseInt(navigator.appVersion);

// assign base variables

flash = "no"

flashver = "1.0"

action = "ns_exec"

flashver2=false;

flashver3=false;

flashver4=false;

flashver5=false;

flashver6=false;

// detect plugin for NS flash 3 version

if (bName=="Netscape")

{

if (navigator.plugins["Shockwave Flash 2.0"]) {ver = "2.0"}

else if(navigator.plugins["Shockwave Flash"]) {ver = "3.0"}

else {flashver = navigator.plugins["Shockwave Flash"].description.substring(16,19);}

test=navigator.plugins["Shockwave Flash"].description.substring(16,19);

if (test>0) {ver=test;}

}

else { action = "ie_exec" }

bver=0;

if (navigator.appVersion.indexOf('3.')!=-1) {bver=3}

if (navigator.appVersion.indexOf('4.')!=-1) {bver=4}

if (navigator.appVersion.indexOf('5.')!=-1) {bver=5}

if (navigator.appVersion.indexOf('6.')!=-1) {bver=6}

//-->

</SCRIPT>

<SCRIPT LANGUAGE="VBScript"***>

<!--

on error resume next

If action = "ie_exec" then

flashver2=(IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.2")))

flashver3=(IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.3")))

flashver4=(IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.4")))

flashver5=(IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.5")))

flashver6=(IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.6")))


End If

//-->

</SCRIPT*
**
>

<***SCRIPT LANGUAGE="JavaScript">

<!-- Actions

if(flashver2) {ver=2};

if(flashver3) {ver=3};

if(flashver4) {ver=4};

if(flashver5) {ver=5};

if(flashver6) {ver=6};

if (ver<minimumver)

{

if (bver>=4) {alert('This page requires ShockWave Flash Plug-In.n n Press OK to install the Plug-In')}// Flash can be installed automatic

else {window.location=manualdetectpage}

// Flash needs manual installation

}

//-->

</SCRIPT***>
Copy linkTweet thisAlerts:
@Amanda360authorJun 25.2003 — <***body text=#980517 bgcolor=#000000 link=00CCFF vlink=00CCFF alink=00CCFF >

<center>




<***HTML>

<*
**
HEAD>

<TITLE>Click File and save if this page is OK - Hit the backbutton to change settings.</TITLE>

<!-- ** THIS PAGE EMBEDS A FLASHMOVIE IN A HTML-DOCUMENT ** -->

<!-- ** THE CODE IS PRODUCED AUTOMATIC BY THE TOOL AT: EchoEcho.Com/toolflashembedder.htm ** -->

<!-- ** NOTE: The code to embed the file is divided into two sections ** -->

<!-- ** The first section MUST be placed in the HEAD-section of the document. ** -->

<!-- ** The second section MUST be placed in the BODY-section of the document. ** -->

<!-- ** Below follows the two sections: ** -->

<!-- *********** START OF FLASHEMBEDDING CODE TO BE PLACED IN THE HEAD OF YOUR PAGE *********** -->

<SCRIPT LANGUAGE="JavaScript">

<!-- hide code

// define pages

flashpage="http://i.i.com.com/cnwk.1d/Ads/1662/11/5/20030620/1/traod_mpu_out.swf";

minimumver=6;

manualdetectpage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash";

// detect browser

bName = navigator.appName;

bVer = parseInt(navigator.appVersion);

// assign base variables

flash = "no"

flashver = "1.0"

action = "ns_exec"

flashver2=false;

flashver3=false;

flashver4=false;

flashver5=false;

flashver6=false;

// detect plugin for NS flash 3 version

if (bName=="Netscape")

{

if (navigator.plugins["Shockwave Flash 2.0"]) {ver = "2.0"}

else if(navigator.plugins["Shockwave Flash"]) {ver = "3.0"}

else {flashver = navigator.plugins["Shockwave Flash"].description.substring(16,19);}

test=navigator.plugins["Shockwave Flash"].description.substring(16,19);

if (test>0) {ver=test;}

}

else { action = "ie_exec" }

bver=0;

if (navigator.appVersion.indexOf('3.')!=-1) {bver=3}

if (navigator.appVersion.indexOf('4.')!=-1) {bver=4}

if (navigator.appVersion.indexOf('5.')!=-1) {bver=5}

if (navigator.appVersion.indexOf('6.')!=-1) {bver=6}

//-->

</SCRIPT***>

<*
**
SCRIPT LANGUAGE="VBScript">

<!--

on error resume next

If action = "ie_exec" then

flashver2=(IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.2")))

flashver3=(IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.3")))

flashver4=(IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.4")))

flashver5=(IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.5")))

flashver6=(IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.6")))


End If

//-->

</SCRIPT***>

<*
**
SCRIPT LANGUAGE="JavaScript">

<!-- Actions

if(flashver2) {ver=2};

if(flashver3) {ver=3};

if(flashver4) {ver=4};

if(flashver5) {ver=5};

if(flashver6) {ver=6};

if (ver<minimumver)

{

if (bver>=4) {alert('This page requires ShockWave Flash Plug-In.n n Press OK to install the Plug-In')}// Flash can be installed automatic

else {window.location=manualdetectpage}

// Flash needs manual installation

}

//-->

</SCRIPT***>

<!-- *********** END OF FLASHEMBEDDING CODE TO BE PLACED IN THE HEAD OF YOUR PAGE *********** -->

</head***>

<body bgcolor="White">

<!-- *********** START OF FLASHEMBEDDING CODE TO BE PLACED IN THE BODY OF YOUR PAGE *********** -->

<*
**
OBJECT classid="clsid?27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=3,0,0,0" ID=ECHOECHO WIDTH=336 HEIGHT=280><PARAM NAME=movie VALUE="http://i.i.com.com/cnwk.1d/Ads/1662/11/5/20030620/1/traod_mpu_out.swf">

<PARAM NAME=quality VALUE=AUTOLOW>

<PARAM NAME=play VALUE=true>

<PARAM NAME="wmode" value="transparent">

<PARAM NAME=menu VALUE=false>

<***SCRIPT LANGUAGE=JavaScript>

<!--

function checkForShockwave()

{

navigator.plugins.refresh();

if ( navigator.plugins["Shockwave Flash"] ){

parent.location.reload();

} else {

setTimeout( "checkForShockwave()", 1000 );

}

}

var ShockMode = 0;

if (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"] && navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin) {

if (navigator.plugins && navigator.plugins["Shockwave Flash"])

ShockMode = 1;

}

if (!ShockMode && navigator.appName && navigator.appName.indexOf("Netscape") != - 1 && navigator.appVersion.indexOf("4.") != - 1

&& navigator.javaEnabled() && netscape.softupdate.Trigger.UpdateEnabled() && document.cookie.indexOf("StartedShockwaveInstall") == -1) {

var jarPath = new String("");

if (navigator.platform.indexOf("Win32") >= 0 )

jarPath = "http://download.macromedia.com/pub/shockwave/jars/english/silentflash32.jar"

else if (navigator.platform.indexOf("Win16") >= 0 )

jarPath = "http://download.macromedia.com/pub/shockwave/jars/english/silentflash16.jar"

else if (navigator.platform.indexOf("MacPPC") >= 0 )

jarPath = "http://download.macromedia.com/pub/shockwave/jars/english/silentflashppc.jar"

if (jarPath.length) {

netscape.softupdate.Trigger.StartSoftwareUpdate (jarPath, netscape.softupdate.Trigger.FORCE_MODE);

document.cookie='StartedShockwaveInstall;path=/;'

setTimeout("checkForShockwave()", 1000);

}

}

//-->

</SCRIPT*
**
>

<EMBED SRC="http://i.i.com.com/cnwk.1d/Ads/1662/11/5/20030620/1/traod_mpu_out.swf" swLiveConnect=FALSE WIDTH=336 HEIGHT=280 QUALITY=AUTOLOW MENU=false PLAY=true BGCOLOR=#FFFFFF TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">

</EMBED>

</OBJECT>

<!-- *********** END OF FLASHEMBEDDING CODE *********** -->

</BODY*
**
></HTML***>






<***p align="center"><font face="Arial" size="-2"><br>

<a href=""></a></font></p></center><div align="center">

<table width="300">

<tr>

<td align="center" style="border: 4px solid #FF0000">

<table width="1%" border="1" cellspacing="0" cellpadding="0" bordercolor="#000000">

<tr bgcolor="#000000">

<td colspan="2" valign="top" align="center"***>







<***div align="center">

<***div align="center">
Copy linkTweet thisAlerts:
@pyroJun 25.2003 — Well, I hate to tell you this, but you are going to have to go into the code that is running ez board and make the changes. I'm not familiar with ez board, so I can't tell you where that would be.
Copy linkTweet thisAlerts:
@Amanda360authorJun 25.2003 — <***center>

<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" width="730" height="111" id="AutoNumber1">

<tr>

<td width="564" height="111">

<div align="center">

<center>

<table width="555" height="101" bordercolor="#660000" style="border-collapse: collapse" cellpadding="0" cellspacing="0" border="1">

<tr>

<td width="184" height="10" background="http://www.msnusers.com/_Secure/0TQAAAEEXEKGcnWkiJT3esjqWd*
dtCE*UQyh9j9J4utlAm7WiDfwrjrThHHw1P4ZxJRmmeXsAroWCW767uLip8VSbIPPGZ2oDm4Di5Ky1Hz9duc*Hb!Darw/titlebarsxx.jpg?dc=4675427048464318806">

<p align="center">

<font color="#FFFFFF" style="font-size: 8pt"> <b> T</b>op <b>W</b>eekly

<b>F</b>orums <b></b></font></td>

<td width="184" height="10" background="http://www.msnusers.com/_
Secure/0TQAAAEEXEKGcnWkiJT3esjqWd*dtCE*UQyh9j9J4utlAm7WiDfwrjrThHHw1P4ZxJRmmeXsAroWCW767uLip8VSbIPPGZ2oDm4Di5Ky1Hz9duc*Hb!Darw/titlebarsxx.jpg?dc=4675427048464318806">

<p align="center">

<font color="#FFFFFF" style="font-size: 8pt"> <b> T</b>op <b>W</b>eekly

<b>P</b>osters <b></b></font></td>

<td width="185" height="10" background="http://www.msnusers.com/_Secure/0TQAAAEEXEKGcnWkiJT3esjqWd*
dtCE*UQyh9j9J4utlAm7WiDfwrjrThHHw1P4ZxJRmmeXsAroWCW767uLip8VSbIPPGZ2oDm4Di5Ky1Hz9duc*Hb!Darw/titlebarsxx.jpg?dc=4675427048464318806">

<p align="center">

<font color="#FFFFFF" style="font-size: 8pt"> <b> T</b>he

<b>L</b>ab <b></b></font></td>

</tr>

<tr>

<td width="184" height="87" background="http://www.msnusers.com/_
Secure/0RgAAAFITFZD84D4Pn!!8G3uJyDtEOFxySdrXEzwOaVj!XX45F!LDvTOEwvANVyWd18SV3q9PbivWSzGQDrXgSfzaQhVyVStV!fzqxuOacQY/aba2.JPG?dc=4675422975307502115">

<div align="center">

<center>

<table width="178" height="1" cellspacing="1" style="border-collapse: collapse">

<tr>

<td width="12" height="14" bgcolor="#043D6A" align="center">

<span class="sidebartext">

<font face="Arial" style="font-size: 8pt" color="#FFFFFF">


</font>

<font style="FONT-SIZE: 8pt" face="Arial" color="#ffffff">

<br> </font>
<font style="FONT-SIZE: 8pt" face="Arial">
<font color="#00CCFF"><span style="font-weight: 700">

</span***></font></font>
<font style="FONT-SIZE: 6pt" face="Arial" color="#980517">
</font><font style="FONT-SIZE: 12pt" face="Arial" color="#00CCFF"><br><br> </font>
<font style="FONT-SIZE: 9pt" face="Tahoma" color="#ffffff">
<marquee onmouseover="this.stop()" style="FILTER: Alpha(Opacity=100, FinishOpacity=0, Style=1, StartX=0, StartY=40, FinishX=0, FinishY=0)" onmouseout="this.start()" scrollAmount="1" scrollDelay="75" direction="up" width="116" height="61"><right><u></u><br><b>1.Discussion<br>1504<br><br>2.Mollusk<br>674<br><br>3.Kaworukun<br>481<br><br>4.Music<br>416<br><br>5.Anime RPG<br>303<br><br>6.Fantasy RPG<br>277<br><br>7.Wataru<br>221<br><br>8.Clancy Mcpretzel<br>203<br><br></right></marquee></font></span></p>
</td>
</table>
</center>
</div>
</td>
<td width="184" height="87" background="http://www.msnusers.com/_Secure/0RgAkA1QTl5Bq6M7jR*o0YrL*yQok3fo7ffjBU5*BrXQ9Zl7YaUKOThtV8!LP70AcLxiK6cWmNKerjvmvJF!jNivYn0sjsbObQS!HtEVDIC8/aba4.JPG?dc=4675422976502780378">
<div align="center">
<center>
<table width="179" height="10" cellspacing="1" style="border-collapse: collapse">
<tr>
<td width="12" height="11" bgcolor="#043D6A" align="center">
<span class="sidebartext">
<font face="Arial" style="font-size: 8pt" color="#FFFFFF">
</font>
<font style="FONT-SIZE: 8pt" face="Arial" color="#ffffff">

<br> </font>
<font style="FONT-SIZE: 8pt" face="Arial">
<font color="#00CCFF"><span style="font-weight: 700">

</span></font></font>
<font style="FONT-SIZE: 6pt" face="Arial" color="#980517">
</font><font style="FONT-SIZE: 12pt" face="Arial" color="#00CCFF"><br><br> </font>
<font style="FONT-SIZE: 9pt" face="Tahoma" color="#ffffff">
<marquee onmouseover="this.stop()" style="FILTER: Alpha(Opacity=100, FinishOpacity=0, Style=1, StartX=0, StartY=40, FinishX=0, FinishY=0)" onmouseout="this.start()" scrollAmount="1" scrollDelay="75" direction="up" width="116" height="61"><right><u></u><br><br> 1.Mollusk<br>24752<br><br>2.Clam mucus<br>22768<br><br>3.Kaworukun<br>2411<br><br>4.Wataru<br>1628<br><br>5.Sexy Amanda<br>1132<br><br>6.Clancy Mcpretzel<br>795<br><br>7.Rocker luke<br>397<br><br>8.Knives999<br>383<br><br>9.Twisted in Hell<br>307<br><br></right></marquee></font></span></p>
</td>
</table>
</center>
</div>
</td>
<td width="185" height="87" background="http://www.msnusers.com/_Secure/0RgDiAlUT2JBzJI02DLarvMy1UiYOcCaHVjGQSDaGNrD7ryqFAPG0rFaGAaUQcaUc1rVsbYS3mtWxdK22JhrW*nOBwhXBRaAePx4LX4ptiKk/aba5.JPG?dc=4675422976504768789" valign="top">
<div align="center">
<center>
<table width="178" cellspacing="1" style="border-collapse: collapse">
<tr>
<td width="165" height="24" align="left" valign="top">
<span class="sidebartext">
<font face="Arial" style="font-size: 8pt" color="#FFFFFF">
</font>
<font style="FONT-SIZE: 8pt" face="Arial" color="#ffffff">

<br> </font>
<font style="FONT-SIZE: 8pt" face="Arial">
<font color="#00CCFF"><span style="font-weight: 700">

</span></font></font>
<font style="FONT-SIZE: 6pt" face="Arial" color="#980517">
</font><font style="FONT-SIZE: 12pt" face="Arial" color="#00CCFF"><br><br> </font>
<font style="FONT-SIZE: 9pt" face="Tahoma" color="#ffffff">
<marquee onmouseover="this.stop()" style="FILTER: Alpha(Opacity=100, FinishOpacity=0, Style=1, StartX=0, StartY=40, FinishX=0, FinishY=0)" onmouseout="this.start()" scrollAmount="1" scrollDelay="75" direction="up" width="116" height="61"><right><u>MONDAY JUNE 16</u><br><br>1 YEAR ANNIVERSARY! -Melissa and i have been together for 1 entire year -i love her more now than i did then -i love you melissa -HAPPY 1 YEAR ANNIVERSARY</right></marquee></font></span></p>
</tr>
<tr>
<td width="165" height="10" align="left" valign="top">
</td>
</tr>
<tr>
<td width="165" height="4" align="left" valign="top">
</td>
</tr>
</table>
</center>
</div>
</td>
</tr>
</table>
</center>
</div>
</td>
<td><td width="165" height="128"< align="center"><!-- BEGIN WEBSIDESTORY CODE -->

<!-- COPYRIGHT 1997-2001 WEBSIDESTORY, INC. ALL RIGHTS RESERVED. U.S.PATENT PENDING. Privacy notice at: http://websidestory.com/privacy -->

<!-- webbot bot="HTMLMarkup" startspan -->

<script language="javascript">

var _pn="Earth2150"; //page name

var _
acct="WQ530607H9BD11EN7"; //account number

var _pndef="title";var _hcv=65;var _mn="wf109";

var _
lp=location.protocol.indexOf('https')==0?"https://":"http://";

var _gn="hg1.hitbox.com";function _ps(_h){if(_h.indexOf("PUT+PAGE+NAME+HER")==0) {

if (_pndef=="title"){return document.title?document.title:_pndef;}else{

var _g=location.pathname;_h=_g.substring(_g.lastIndexOf("/")+1,_g.length);

if(_
h==""){return _pndef};}};return _h;}var _sv=10;var _bn=navigator.appName;

if(_bn.substring(0,9)=="Microsoft"){_bn="MSIE";};var _bv=Math.round(parseFloat(navigator.appVersion)*100);

if((_
bn=="MSIE")&&(parseInt(_bv)==2))_bv=301;var _rf=escape(document.referrer);_pn=_ps(_pn);

var _hbfa="<a href='http://rd1.hitbox.com/rd?acct="+_acct+"' target=_top><img src='";

var _
hbfc="' border=0 width=125 height=125></a><div><font face='MS Sans Serif,Arial,Helvetica '"+

"size=1><a href='http://counter.hitbox.com/a/hitboxfree.cgi' target='_blank'>privacy</a></font></div>";

var _
hbfb="";</script><script language="javascript1.1" id="_hbc">_sv=11;</script><script


language="javascript1.1" src="http://stats.hitbox.com/js/hbf.js"></script><script language="javascript">

if(_hbfb.length!=0){document.write(_hbfa+_hbfb+_hbfc);}else{if((_rf=="undefined")||(_rf=="")){

_rf="bookmark";};document.write(_hbfa+_lp+_gn+"/HG?hc="+_mn+"&l=1&hb="+_acct+"&n="+escape(_pn)+

"&cd=1&bt=2&bn="+escape(_
bn)+"&bv="+_bv+"&ss=na&sc=na&dt=&sv="+_sv+"&ja=na&ln=na&pl=&rf="+_rf+_hbfc);}

</script><noscript><a href="http://rd1.hitbox.com/rd?acct=WQ530607H9BD11EN7" target=_top><img

src="http://hg1.hitbox.com/HG?hc=wf109&cd=1&ce=u&hb=WQ530607H9BD11EN7&n=Earth2150&l=1"

border="0" width=125 height=125></a><div><font face="MS Sans Serif,Arial,Helvetica" size=1><a

href="http://counter.hitbox.com/a/hitboxfree.cgi" target="_
blank">privacy</a></font></div>

</noscript><!--//-->

<!-- webbot bot="HTMLMarkup" endspan -->

<!-- END WEBSIDESTORY CODE -->

</td>
</tr>

</table>

</center>

</div>





















<tr>

<td width="100" valign="top" align="center" bgcolor="#000000"><br>
Copy linkTweet thisAlerts:
@Amanda360authorJun 25.2003 — [i]Originally posted by pyro [/i]

[B]Well, I hate to tell you this, but you are going to have to go into the code that is running ez board and make the changes. I'm not familiar with ez board, so I can't tell you where that would be. [/B][/QUOTE]



oh, well that sucks, thanks then Pyro

i mean your code works perfectly, its just not in the right place
Copy linkTweet thisAlerts:
@pyroJun 25.2003 — You're welcome, and good luck. ?
×

Success!

Help @Amanda360 spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.27,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...