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 biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

</form> on Javascript

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
I've got the following javascript to gather arrays of messages and scroll them, embedding links to cgi script i the array, with variables defined, therein; however, the first link works, but after that, it won't, I'm pretty sure b/c I haven't </form> anywhere; however, I don't know where to stick it.

Here is the code for the scroller - I don't mean to put it all in, but I don't know where the problem is - thanks for any help, in advance.

<html>
<head>
<base target=main>
<TITLE>NewsNav: pop-up-menu and news-scroller all in one</TITLE>
<script language=&quot;JavaScript1.2&quot;>
var message= new Array()
message[0]=&quot;A & B Charters|10% off on all full day trips| & B Charters&vendorcontact=info@aandbcharters.com&discount=10% off on all full day trips&quot;

message[1]=&quot;Carrabba's Grille|free meals all around!| Grille&vendorcontact=info@carrabbas.com&discount=free meals all around!&quot;


var menu_1= new Array()

var menu_2= new Array()

var menu_3= new Array()

var menu_4= new Array()

var menu_5= new Array()

var menu_6= new Array()

var scrollerheight=200
var scrollerwidth=275
var scrollertop=0
var scrollerleft=0
var scrollerpadding=10
var leftdif=140
var topdif=36
var backgroundborder=2
var scrollerbgcolor=&quot;DDDDDD&quot;
var font_titleface=&quot;Verdana&quot;
var font_titlecolor=&quot;FF0000&quot;
var font_titlesize=2
var font_copyface=&quot;Verdana&quot;
var font_copycolor=&quot;660000&quot;
var font_copysize=2
var font_linkface=&quot;Verdana&quot;
var font_linkcolor=&quot;blue&quot;
var font_linksize=2
var linktarget=&quot;_main&quot;
var standstillfix=3000
var submenutime=5000
var buttonnumber=6
var cliptop=0
var clipbottom=scrollerheight-2*scrollerpadding
var clipleft=0
var clipright=scrollerheight
var i_message=0
var mes_joined
var mes_split
var menu_joined
var menu_split
var contenttext
var contentmenu
var contentbg

var totalheight=scrollerheight*(message.length)
var i_height=0
var step=1
var pause=20

var standstillflex=0

function initiatemenus(){
for (ii=1;ii<=buttonnumber;ii++) {
contentmenu=&quot;<table cellpadding=0 cellspacing=0 border=0 width=&quot;+(scrollerwidth-2*scrollerpadding)+&quot;>&quot;
contentmenu+=&quot;<tr valign='top'><td height='&quot;+scrollerheight+&quot;'>&quot;
var thismenu=eval(&quot;menu_&quot;+ii)
for (i=0;i<=thismenu.length-1;i++) {
menu_joined=thismenu
menu_split=menu_joined.split(&quot;|&quot;)
contentmenu+=&quot;<center><a href='&quot;+menu_split[1]+&quot;' target='&quot;+linktarget+&quot;'><font face='&quot;+font_linkface+&quot;' color='&quot;+font_linkcolor+&quot;' size='&quot;+font_linksize+&quot;'>&quot;+menu_split[0]+&quot;</font></a></center><br>&quot;
}
contentmenu+=&quot;</td></tr>&quot;
contentmenu+=&quot;</table>&quot;
if (document.all) {
var thismenudiv=eval(&quot;document.all.menu&quot;+ii+&quot;.style&quot;)
var thisinnerhtml=eval(&quot;menu&quot;+ii)
thisinnerhtml.innerHTML=contentmenu
thismenudiv.posTop=scrollertop
thismenudiv.posLeft=scrollerleft
}
if (document.layers) {
var thismenudiv=eval(&quot;document.menu&quot;+ii)
thismenudiv.document.write(contentmenu)
thismenudiv.document.close()
thismenudiv.top=scrollertop
thismenudiv.left=scrollerleft
}
contentmenu=&quot;&quot;
}
initiatescroller()
}

function initiatescroller(){
contenttext=&quot;<table cellpadding=0 cellspacing=0 border=0 width=&quot;+(scrollerwidth-2*scrollerpadding)+&quot;>&quot;
contenttext+=&quot;<tr valign='top'><td height='&quot;+scrollerheight+&quot;'><br></td></tr>&quot;
for (i=0;i<=message.length-1;i++) {
mes_joined=message
mes_split=mes_joined.split(&quot;|&quot;)
contenttext+=&quot;<tr valign='top'><td height='&quot;+scrollerheight+&quot;'><a href='&quot;+mes_split[2]+&quot;'><font face='&quot;+font_titleface+&quot;' color='&quot;+font_titlecolor+&quot;' size='&quot;+font_titlesize+&quot;'>&quot;+mes_split[0]+&quot;</font></a><br><font face='&quot;+font_copyface+&quot;' color='&quot;+font_copycolor+&quot;' size='&quot;+font_copysize+&quot;'>&quot;+mes_split[1]+&quot;</font></td></tr>&quot;
}
contenttext+=&quot;</table>&quot;

contentbg=&quot;<table cellpadding=0 cellspacing=0 border=&quot;+backgroundborder+&quot; width='&quot;+scrollerwidth+&quot;'><tr><td height='&quot;+scrollerheight+&quot;' bgcolor=&quot;+scrollerbgcolor+&quot;>&nbsp;</td></tr></table>&quot;

if (document.all) {
scrollertext.innerHTML=contenttext
scrollerbg.innerHTML=contentbg
document.all.scrollertext.style.posTop=scrollertop
document.all.scrollertext.style.posLeft=scrollerleft
document.all.scrollerbg.style.posTop=scrollertop-scrollerpadding
document.all.scrollerbg.style.posLeft=scrollerleft-scrollerpadding
document.all.scrollerbgimg.style.posTop=scrollertop-scrollerpadding-topdif
document.all.scrollerbgimg.style.posLeft=scrollerleft-scrollerpadding-leftdif
document.all.scrollertext.style.clip=&quot;rect(&quot;+cliptop+&quot; &quot;+clipright+&quot; &quot;+clipbottom+&quot; &quot;+clipleft+&quot;)&quot;
}
if (document.layers) {
document.scrollertext.document.write(contenttext)
document.scrollertext.document.close()
document.scrollerbg.document.write(contentbg)
document.scrollerbg.document.close()
document.scrollertext.top=scrollertop
document.scrollertext.left=scrollerleft
document.scrollerbg.top=scrollertop-scrollerpadding
document.scrollerbg.left=scrollerleft-scrollerpadding
document.scrollerbgimg.top=scrollertop-scrollerpadding-topdif
document.scrollerbgimg.left=scrollerleft-scrollerpadding-leftdif
document.scrollertext.clip.left=clipleft
document.scrollertext.clip.right=clipright
document.scrollertext.clip.top=cliptop
document.scrollertext.clip.bottom=clipbottom
}
scroll()
}

function scroll(){
standstillflex=standstillfix
if (document.all){
if (i_height<scrollerheight) {
i_height+=step
cliptop+=step
clipbottom+=step
document.all.scrollertext.style.clip=&quot;rect(&quot;+cliptop+&quot; &quot;+clipright+&quot; &quot;+clipbottom+&quot; &quot;+clipleft+&quot;)&quot;
document.all.scrollertext.style.posTop-=step
var timer=setTimeout(&quot;scroll()&quot;,pause)
}

else {
if (document.all.scrollertext.style.posTop<=-(totalheight)) {
document.all.scrollertext.style.posTop=scrollertop
cliptop=0
clipbottom=scrollerheight-2*scrollerpadding
document.all.scrollertext.style.clip=&quot;rect(&quot;+cliptop+&quot; &quot;+clipright+&quot; &quot;+clipbottom+&quot; &quot;+clipleft+&quot;)&quot;
standstillflex=0
}
i_height=0
clearTimeout(timer)
var timer=setTimeout(&quot;scroll()&quot;,standstillflex)
}
}

if (document.layers){
if (i_height<scrollerheight) {
i_height+=step
cliptop+=step
clipbottom+=step
document.scrollertext.clip.left=clipleft
document.scrollertext.clip.right=clipright
document.scrollertext.clip.top=cliptop
document.scrollertext.clip.bottom=clipbottom
document.scrollertext.top-=step
var timer=setTimeout(&quot;scroll()&quot;,pause)
}

else {
if (document.scrollertext.top<=-(totalheight)) {
document.scrollertext.top=scrollertop
cliptop=0
clipbottom=scrollerheight-2*scrollerpadding
document.scrollertext.clip.left=clipleft
document.scrollertext.clip.right=clipright
document.scrollertext.clip.top=cliptop
document.scrollertext.clip.bottom=clipbottom
standstillflex=0
}
i_height=0
clearTimeout(timer)
var timer=setTimeout(&quot;scroll()&quot;,standstillflex)
}
}
}

function showmenu(whichmenu) {
hidealldivs()
if (document.all) {
var thismenu=eval(&quot;document.all.&quot;+whichmenu+&quot;.style&quot;)
thismenu.visibility=&quot;VISIBLE&quot;
}
if (document.layers) {
var thismenu=eval(&quot;document.&quot;+whichmenu)
thismenu.visibility=&quot;VISIBLE&quot;
}
var timer=setTimeout(&quot;showtextagain()&quot;,submenutime)
}

function hidealldivs() {
for (ii=1;ii<=buttonnumber;ii++) {
if (document.all) {
var thismenudiv=eval(&quot;document.all.menu&quot;+ii+&quot;.style&quot;)
thismenudiv.visibility=&quot;HIDDEN&quot;
}
if (document.layers) {
var thismenudiv=eval(&quot;document.menu&quot;+ii)
thismenudiv.visibility=&quot;HIDDEN&quot;
}
}
if (document.all) {
document.all.scrollertext.style.visibility=&quot;HIDDEN&quot;
}
if (document.layers) {
document.scrollertext.visibility=&quot;HIDDEN&quot;
}
}

function showtextagain() {
for (ii=1;ii<=buttonnumber;ii++) {
if (document.all) {
var thismenudiv=eval(&quot;document.all.menu&quot;+ii+&quot;.style&quot;)
thismenudiv.visibility=&quot;HIDDEN&quot;
}
if (document.layers) {
var thismenudiv=eval(&quot;document.menu&quot;+ii)
thismenudiv.visibility=&quot;HIDDEN&quot;
}
}
if (document.all) {
document.all.scrollertext.style.visibility=&quot;VISIBLE&quot;
}
if (document.layers) {

document.scrollertext.visibility=&quot;VISIBLE&quot;
}
}

</script>

</head>

<body onLoad=&quot;initiatemenus()&quot;>

<div id=&quot;scrollerbgimg&quot; style=&quot;position:absolute;top:-1000px&quot;>
<MAP NAME=&quot;menunewsnav&quot;>
<AREA SHAPE=RECT COORDS=&quot;17,32,135,53&quot; HREF=&quot;javascript:showmenu('menu1')&quot;>
<AREA SHAPE=RECT COORDS=&quot;18,59,134,77&quot; HREF=&quot;javascript:showmenu('menu2')&quot;>
<AREA SHAPE=RECT COORDS=&quot;18,81,134,100&quot; HREF=&quot;javascript:showmenu('menu3')&quot;>
<AREA SHAPE=RECT COORDS=&quot;17,104,135,123&quot; HREF=&quot;javascript:showmenu('menu4')&quot;>
<AREA SHAPE=RECT COORDS=&quot;16,126,135,146&quot; HREF=&quot;javascript:showmenu('menu5')&quot;>
<AREA SHAPE=RECT COORDS=&quot;17,150,133,168&quot; HREF=&quot;javascript:showmenu('menu6')&quot;>
<AREA SHAPE=RECT COORDS=&quot;138,149,267,169&quot; HREF=&quot; target=&quot;_blank&quot;>
<AREA SHAPE=RECT COORDS=&quot;17,1,130,16&quot; HREF=&quot; target=&quot;_blank&quot;>
</MAP>
</div>

<div id=&quot;scrollerbg&quot; style=&quot;position:absolute;top:-1000px&quot;>&nbsp;</div>

<div id=&quot;scrollertext&quot; style=&quot;position:absolute;top:-1000px&quot;>&nbsp;</div>

<div id=&quot;menu1&quot; style=&quot;position:absolute;top:-1000px;visibility:hidden&quot;></div>
<div id=&quot;menu2&quot; style=&quot;position:absolute;top:-1000px;visibility:hidden&quot;></div>
<div id=&quot;menu3&quot; style=&quot;position:absolute;top:-1000px;visibility:hidden&quot;></div>
<div id=&quot;menu4&quot; style=&quot;position:absolute;top:-1000px;visibility:hidden&quot;></div>
<div id=&quot;menu5&quot; style=&quot;position:absolute;top:-1000px;visibility:hidden&quot;></div>
<div id=&quot;menu6&quot; style=&quot;position:absolute;top:-1000px;visibility:hidden&quot;></div>


</body>
</html>
 
try reposting it, but unselect Process TGML option as it affects code (especially code dealing with arrays and iterations) jared@eae.net -
 
nathan_11 (Visitor) Apr 24, 2001
I've got the following javascript to gather arrays of messages and scroll them, embedding links to cgi script i the array, with variables defined, therein; however, the first link works, but after that, it won't, I'm pretty sure b/c I haven't </form> anywhere; however, I don't know where to stick it.

Here is the code for the scroller - I don't mean to put it all in, but I don't know where the problem is - thanks for any help, in advance.

<html>
<head>
<base target=main>
<TITLE>NewsNav: pop-up-menu and news-scroller all in one</TITLE>
<script language=&quot;JavaScript1.2&quot;>
var message= new Array()
message[0]=&quot;A & B Charters|10% off on all full day trips| & B Charters&vendorcontact=info@aandbcharters.com&discount=10% off on all full day trips&quot;

message[1]=&quot;Carrabba's Grille|free meals all around!| Grille&vendorcontact=info@carrabbas.com&discount=free meals all around!&quot;


var menu_1= new Array()

var menu_2= new Array()

var menu_3= new Array()

var menu_4= new Array()

var menu_5= new Array()

var menu_6= new Array()

var scrollerheight=200
var scrollerwidth=275
var scrollertop=0
var scrollerleft=0
var scrollerpadding=10
var leftdif=140
var topdif=36
var backgroundborder=2
var scrollerbgcolor=&quot;DDDDDD&quot;
var font_titleface=&quot;Verdana&quot;
var font_titlecolor=&quot;FF0000&quot;
var font_titlesize=2
var font_copyface=&quot;Verdana&quot;
var font_copycolor=&quot;660000&quot;
var font_copysize=2
var font_linkface=&quot;Verdana&quot;
var font_linkcolor=&quot;blue&quot;
var font_linksize=2
var linktarget=&quot;_main&quot;
var standstillfix=3000
var submenutime=5000
var buttonnumber=6
var cliptop=0
var clipbottom=scrollerheight-2*scrollerpadding
var clipleft=0
var clipright=scrollerheight
var i_message=0
var mes_joined
var mes_split
var menu_joined
var menu_split
var contenttext
var contentmenu
var contentbg

var totalheight=scrollerheight*(message.length)
var i_height=0
var step=1
var pause=20

var standstillflex=0

function initiatemenus(){
for (ii=1;ii<=buttonnumber;ii++) {
contentmenu=&quot;<table cellpadding=0 cellspacing=0 border=0 width=&quot;+(scrollerwidth-2*scrollerpadding)+&quot;>&quot;
contentmenu+=&quot;<tr valign='top'><td height='&quot;+scrollerheight+&quot;'>&quot;
var thismenu=eval(&quot;menu_&quot;+ii)
for (i=0;i<=thismenu.length-1;i++) {
menu_joined=thismenu
menu_split=menu_joined.split(&quot;|&quot;)
contentmenu+=&quot;<center><a href='&quot;+menu_split[1]+&quot;' target='&quot;+linktarget+&quot;'><font face='&quot;+font_linkface+&quot;' color='&quot;+font_linkcolor+&quot;' size='&quot;+font_linksize+&quot;'>&quot;+menu_split[0]+&quot;</font></a></center><br>&quot;
}
contentmenu+=&quot;</td></tr>&quot;
contentmenu+=&quot;</table>&quot;
if (document.all) {
var thismenudiv=eval(&quot;document.all.menu&quot;+ii+&quot;.style&quot;)
var thisinnerhtml=eval(&quot;menu&quot;+ii)
thisinnerhtml.innerHTML=contentmenu
thismenudiv.posTop=scrollertop
thismenudiv.posLeft=scrollerleft
}
if (document.layers) {
var thismenudiv=eval(&quot;document.menu&quot;+ii)
thismenudiv.document.write(contentmenu)
thismenudiv.document.close()
thismenudiv.top=scrollertop
thismenudiv.left=scrollerleft
}
contentmenu=&quot;&quot;
}
initiatescroller()
}

function initiatescroller(){
contenttext=&quot;<table cellpadding=0 cellspacing=0 border=0 width=&quot;+(scrollerwidth-2*scrollerpadding)+&quot;>&quot;
contenttext+=&quot;<tr valign='top'><td height='&quot;+scrollerheight+&quot;'><br></td></tr>&quot;
for (i=0;i<=message.length-1;i++) {
mes_joined=message
mes_split=mes_joined.split(&quot;|&quot;)
contenttext+=&quot;<tr valign='top'><td height='&quot;+scrollerheight+&quot;'><a href='&quot;+mes_split[2]+&quot;'><font face='&quot;+font_titleface+&quot;' color='&quot;+font_titlecolor+&quot;' size='&quot;+font_titlesize+&quot;'>&quot;+mes_split[0]+&quot;</font></a><br><font face='&quot;+font_copyface+&quot;' color='&quot;+font_copycolor+&quot;' size='&quot;+font_copysize+&quot;'>&quot;+mes_split[1]+&quot;</font></td></tr>&quot;
}
contenttext+=&quot;</table>&quot;

contentbg=&quot;<table cellpadding=0 cellspacing=0 border=&quot;+backgroundborder+&quot; width='&quot;+scrollerwidth+&quot;'><tr><td height='&quot;+scrollerheight+&quot;' bgcolor=&quot;+scrollerbgcolor+&quot;> </td></tr></table>&quot;

if (document.all) {
scrollertext.innerHTML=contenttext
scrollerbg.innerHTML=contentbg
document.all.scrollertext.style.posTop=scrollertop
document.all.scrollertext.style.posLeft=scrollerleft
document.all.scrollerbg.style.posTop=scrollertop-scrollerpadding
document.all.scrollerbg.style.posLeft=scrollerleft-scrollerpadding
document.all.scrollerbgimg.style.posTop=scrollertop-scrollerpadding-topdif
document.all.scrollerbgimg.style.posLeft=scrollerleft-scrollerpadding-leftdif
document.all.scrollertext.style.clip=&quot;rect(&quot;+cliptop+&quot; &quot;+clipright+&quot; &quot;+clipbottom+&quot; &quot;+clipleft+&quot;)&quot;
}
if (document.layers) {
document.scrollertext.document.write(contenttext)
document.scrollertext.document.close()
document.scrollerbg.document.write(contentbg)
document.scrollerbg.document.close()
document.scrollertext.top=scrollertop
document.scrollertext.left=scrollerleft
document.scrollerbg.top=scrollertop-scrollerpadding
document.scrollerbg.left=scrollerleft-scrollerpadding
document.scrollerbgimg.top=scrollertop-scrollerpadding-topdif
document.scrollerbgimg.left=scrollerleft-scrollerpadding-leftdif
document.scrollertext.clip.left=clipleft
document.scrollertext.clip.right=clipright
document.scrollertext.clip.top=cliptop
document.scrollertext.clip.bottom=clipbottom
}
scroll()
}

function scroll(){
standstillflex=standstillfix
if (document.all){
if (i_height<scrollerheight) {
i_height+=step
cliptop+=step
clipbottom+=step
document.all.scrollertext.style.clip=&quot;rect(&quot;+cliptop+&quot; &quot;+clipright+&quot; &quot;+clipbottom+&quot; &quot;+clipleft+&quot;)&quot;
document.all.scrollertext.style.posTop-=step
var timer=setTimeout(&quot;scroll()&quot;,pause)
}

else {
if (document.all.scrollertext.style.posTop<=-(totalheight)) {
document.all.scrollertext.style.posTop=scrollertop
cliptop=0
clipbottom=scrollerheight-2*scrollerpadding
document.all.scrollertext.style.clip=&quot;rect(&quot;+cliptop+&quot; &quot;+clipright+&quot; &quot;+clipbottom+&quot; &quot;+clipleft+&quot;)&quot;
standstillflex=0
}
i_height=0
clearTimeout(timer)
var timer=setTimeout(&quot;scroll()&quot;,standstillflex)
}
}

if (document.layers){
if (i_height<scrollerheight) {
i_height+=step
cliptop+=step
clipbottom+=step
document.scrollertext.clip.left=clipleft
document.scrollertext.clip.right=clipright
document.scrollertext.clip.top=cliptop
document.scrollertext.clip.bottom=clipbottom
document.scrollertext.top-=step
var timer=setTimeout(&quot;scroll()&quot;,pause)
}

else {
if (document.scrollertext.top<=-(totalheight)) {
document.scrollertext.top=scrollertop
cliptop=0
clipbottom=scrollerheight-2*scrollerpadding
document.scrollertext.clip.left=clipleft
document.scrollertext.clip.right=clipright
document.scrollertext.clip.top=cliptop
document.scrollertext.clip.bottom=clipbottom
standstillflex=0
}
i_height=0
clearTimeout(timer)
var timer=setTimeout(&quot;scroll()&quot;,standstillflex)
}
}
}

function showmenu(whichmenu) {
hidealldivs()
if (document.all) {
var thismenu=eval(&quot;document.all.&quot;+whichmenu+&quot;.style&quot;)
thismenu.visibility=&quot;VISIBLE&quot;
}
if (document.layers) {
var thismenu=eval(&quot;document.&quot;+whichmenu)
thismenu.visibility=&quot;VISIBLE&quot;
}
var timer=setTimeout(&quot;showtextagain()&quot;,submenutime)
}

function hidealldivs() {
for (ii=1;ii<=buttonnumber;ii++) {
if (document.all) {
var thismenudiv=eval(&quot;document.all.menu&quot;+ii+&quot;.style&quot;)
thismenudiv.visibility=&quot;HIDDEN&quot;
}
if (document.layers) {
var thismenudiv=eval(&quot;document.menu&quot;+ii)
thismenudiv.visibility=&quot;HIDDEN&quot;
}
}
if (document.all) {
document.all.scrollertext.style.visibility=&quot;HIDDEN&quot;
}
if (document.layers) {
document.scrollertext.visibility=&quot;HIDDEN&quot;
}
}

function showtextagain() {
for (ii=1;ii<=buttonnumber;ii++) {
if (document.all) {
var thismenudiv=eval(&quot;document.all.menu&quot;+ii+&quot;.style&quot;)
thismenudiv.visibility=&quot;HIDDEN&quot;
}
if (document.layers) {
var thismenudiv=eval(&quot;document.menu&quot;+ii)
thismenudiv.visibility=&quot;HIDDEN&quot;
}
}
if (document.all) {
document.all.scrollertext.style.visibility=&quot;VISIBLE&quot;
}
if (document.layers) {

document.scrollertext.visibility=&quot;VISIBLE&quot;
}
}

</script>

</head>

<body onLoad=&quot;initiatemenus()&quot;>

<div id=&quot;scrollerbgimg&quot; style=&quot;position:absolute;top:-1000px&quot;>
<MAP NAME=&quot;menunewsnav&quot;>
<AREA SHAPE=RECT COORDS=&quot;17,32,135,53&quot; HREF=&quot;javascript:showmenu('menu1')&quot;>
<AREA SHAPE=RECT COORDS=&quot;18,59,134,77&quot; HREF=&quot;javascript:showmenu('menu2')&quot;>
<AREA SHAPE=RECT COORDS=&quot;18,81,134,100&quot; HREF=&quot;javascript:showmenu('menu3')&quot;>
<AREA SHAPE=RECT COORDS=&quot;17,104,135,123&quot; HREF=&quot;javascript:showmenu('menu4')&quot;>
<AREA SHAPE=RECT COORDS=&quot;16,126,135,146&quot; HREF=&quot;javascript:showmenu('menu5')&quot;>
<AREA SHAPE=RECT COORDS=&quot;17,150,133,168&quot; HREF=&quot;javascript:showmenu('menu6')&quot;>
<AREA SHAPE=RECT COORDS=&quot;138,149,267,169&quot; HREF=&quot; target=&quot;_blank&quot;>
<AREA SHAPE=RECT COORDS=&quot;17,1,130,16&quot; HREF=&quot; target=&quot;_blank&quot;>
</MAP>
</div>

<div id=&quot;scrollerbg&quot; style=&quot;position:absolute;top:-1000px&quot;> </div>

<div id=&quot;scrollertext&quot; style=&quot;position:absolute;top:-1000px&quot;> </div>

<div id=&quot;menu1&quot; style=&quot;position:absolute;top:-1000px;visibility:hidden&quot;></div>
<div id=&quot;menu2&quot; style=&quot;position:absolute;top:-1000px;visibility:hidden&quot;></div>
<div id=&quot;menu3&quot; style=&quot;position:absolute;top:-1000px;visibility:hidden&quot;></div>
<div id=&quot;menu4&quot; style=&quot;position:absolute;top:-1000px;visibility:hidden&quot;></div>
<div id=&quot;menu5&quot; style=&quot;position:absolute;top:-1000px;visibility:hidden&quot;></div>
<div id=&quot;menu6&quot; style=&quot;position:absolute;top:-1000px;visibility:hidden&quot;></div>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top