
Ad remover place in website stats
<!--AdRemover--> <!--Screennaimless code created by Anti_fukin_social--> <!--http://www.xanga.com/anti_fukin_social--></table></td></tr></tr></td></table> <ilayer name=""><div id="" style="width:1; height:1; BACKGROUND: #; FILTER: alpha(opacity=0); overflow:auto"> <ilayer name=""><div id="" style="width:1; height:1; BACKGROUND: #; FILTER: alpha(opacity=0); overflow:auto"> <!--Finished--> <!--End Of AdRemover-->
Any size profile pic place in website stats
<script type="text/javascript"> // // Copyright ?004 by EasterEgg. // // For use at Xanga only. // // This script allows you to use any online image as a profile pic, // regardless of it's size. You're no longer confined to 160 x 160 pixels // or the maximum width that the left sidebar allows, since this script // will also adjust the width of the left sidebar as you see fit. // Random pics will be chosen if you have added more than one profile pic // to the array "newProfileImages" below. // // This script is freeware and can be freely used as long as the copyright // notice and the comments in this script remains intact. It is provided // 'as is' without guarantees of any kind. // // The script doesn't work for Mac users... //
// ****************** BEGINNING OF WHAT YOU CAN EDIT ********************
// ***** Set the width of the image(s). Note that this has no effect in Netscape. maxWidth = 250;
// ***** add as many images as you like to the array below. var newProfileImages = new Array( "http://www.freestockphotos.com/SCENERY1/BacklitMtns.jpg", "http://www.freestockphotos.com/SCENERY1/bmpwin.jpeg", "http://www.freestockphotos.com/SKY/BlueClouds2.jpg", "http://www.freestockphotos.com/ANIMALS/Bullsnake2.jpg", "http://www.freestockphotos.com/ROME1/AgustusCoin.jpg", "http://www.freestockphotos.com/EGYPT/Akhenaten.JPG" // <-- !!! no comma after last img! );
// ********************* END OF WHAT YOU CAN EDIT ************************
indexNr = Math.round(Math.random() * (newProfileImages.length)); if (indexNr == newProfileImages.length) indexNr = newProfileImages.length - 1;
newProfilePicURL = newProfileImages[indexNr];
newImage = new Image(maxWidth,0); newImage.src = newProfilePicURL;
var allImages = document.images;
// rule out Mac users if (navigator.userAgent.indexOf('Mac') == -1) { for ( i = 0; i < allImages.length; ++i ) { if (allImages[i].src.indexOf('profile') != -1) { allImages[i].src = newProfilePicURL; // Netscape doesn't allow adjusting the image width if (navigator.userAgent.indexOf('Netscape') == -1) { allImages[i].width = newImage.width; newStyle = '<style>table.left { width:' + (newImage.width + 40) + 'px;}</style>'; document.write(newStyle); } break; } } } </script>
Right click pop up place in website stats
<!-- begin code provided by createblog.com --> <script language="JavaScript"> var message="YOUR MESSAGE HERE!"; function click(e) { if (document.all) { if (event.button==2||event.button==3) { alert(message); return false; } } if (document.layers) { if (e.which == 3) { alert(message); return false; } } } if (document.layers) { document.captureEvents(Event.MOUSEDOWN); } document.onmousedown=click; // --> </SCRIPT> <!-- end code provided by createblog.com -->
Status bar message place in header
<!-- begin code provided by createblog.com -->
<script language="JavaScript">
var message = "YOUR MESSAGE HERE"; var speed = 75; var forward = true;
function bounce(){ if (forward) { message = " " + message; forward = ((message.length > 120) ? false : true); } else { if (message.charAt(0) == ' ') { message = message.substring(1, message.length); } else { forward = true; } } window.status = message; ("bounce()", speed); }
bounce();
// end hide --> </script> <!-- end code provided by createblog.com -->
Title bar message place in header
<script language=javascript> document.title=("YOUR TEXT HERE") </script>
Music playlist place in header
<!-- begin code provided by createblog.com --> <object id="darkplayer" codeBase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" type="application/x-oleobject" height="0" standby="Loading Microsoft Windows Media Player components..." width="0" classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95"> <param NAME VALUE> <param NAME="ShowControls" VALUE="0"> <param NAME="ShowStatusBar" VALUE="0"> <param NAME="ShowDisplay" VALUE="0"> <param NAME="DefaultFrame" VALUE="Slide"> <param NAME="Autostart" VALUE="1"> <param NAME="Loop" VALUE="True"> </object> <form name="form"> <select name="playlist" size="1">
<!-- Add song info here --> <option value="0">Artist Name - Song Title</option> <option value="1">Artist Name - Song Title</option> <option value="2">Artist Name - Song Title</option> <option value="3">Artist Name - Song Title</option> <option value="4">Artist Name - Song Title</option>
</select> <input TYPE="BUTTON" NAME="darkplay" VALUE="play" OnClick="play(document.forms['form'].playlist);"> </form>
<script language="JavaScript"> <!-- var playstate = 1; shuffle = 1; // Set to 0 to always play first song in list // Set to 1 to randomly choose the first song to play songs=new Array();
// Add song URLs here songs[0]="SONG URL HERE"; songs[1]="SONG URL HERE"; songs[2]="SONG URL HERE"; songs[3]="SONG URL HERE"; songs[4]="SONG URL HERE"; if (shuffle == 1) { var randsg = Math.floor(Math.random()*songs.length); document.darkplayer.FileName = songs[randsg]; document.darkplayer.scr = songs[randsg]; document.forms['form'].playlist.options[randsg].selected = true; } function play(list) { if (playstate == 2) { document.darkplayer.Play(); } else { var snum = list.options[list.selectedIndex].value document.darkplayer.FileName = songs[snum]; document.darkplayer.scr = songs[snum]; } playstate = 1; } //--> </script> <!-- end code provided by createblog.com -->
New & improved playlist place in header
<OBJECT ID="Player" height="0" width="0" CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6"> <PARAM NAME="uiMode" VALUE="invisible"> <PARAM NAME="Autostart" VALUE="False"> </object> <FORM ID="form"> <SELECT ID="playlist" size="1"> <!-- Add song info that appears in drop down list here --> <option value="0">Artist Name - Song Title</option> <option value="1">Artist Name - Song Title</option> <option value="2">Artist Name - Song Title</option> <option value="3">Artist Name - Song Title</option> <option value="4">Artist Name - Song Title</option> </SELECT> <BR> <BUTTON ID="BackButton" onClick="Back(forms['form'].playlist);"> << </BUTTON> <BUTTON ID="PlayPauseButton" onClick="PlayPause(forms['form'].playlist);"><FONT color="green"> Play </FONT></BUTTON> <BUTTON ID="NextButton" onClick="Next(forms['form'].playlist);"> >> </BUTTON> <BUTTON ID="StopButton" onclick="Stop();"><FONT color="maroon">Stop</FONT></BUTTON> <b><font size="3" color="black">Shuffle</font></b><INPUT TYPE=checkbox CHECKED ID="ShuffleSwitch" onclick="ToggleShuffle(this);" value="ON"> </FORM> </CENTER> <comment ID="PlayHTML"><FONT color="green"> Play </FONT></comment> <comment ID="ShuffleOnHTML"><INPUT TYPE=checkbox CHECKED ID="ShuffleSwitch" onclick="ToggleShuffle(this);"></comment> <comment ID="ShuffleOffHTML"><INPUT TYPE=checkbox UNCHECKED ID="ShuffleSwitch" onclick="ToggleShuffle(this);"></comment> <script ID="Main" Language="JavaScript"> var songs = new Array(); //*******************************// //****** CHANGEABLE STUFF *******// //*******************************// var shuffle = false; // false = shuffle off, true = shuffle on var autoStart = true; // false = autoStart off, true = autoStart on var numberTracks = true; // true = place track number in front of list items, false = no track numbers // Add song URLs here (make sure it matches up with the order you have for song info, and urls need quotes): songs[0]="musicURL"; songs[1]="musicURL"; songs[2]="musicURL"; songs[3]="musicURL"; songs[4]="musicURL"; //*******************************// //*******************************// // Initializations // with (document){ var length = forms['form'].playlist.length; if(numberTracks){ for (var i = 0; i < length; i++){ forms['form'].playlist.options[i].innerHTML = (i+1) + " - " + forms['form'].playlist.options[i].innerHTML; } } if (shuffle) { var randsg = Math.floor(Math.random()*songs.length); Player.url = songs[randsg]; forms['form'].playlist.options[randsg].selected = true; forms['form'].ShuffleSwitch.outerHTML = ShuffleOnHTML.innerHTML; } else { forms['form'].ShuffleSwitch.outerHTML = ShuffleOffHTML.innerHTML; Player.url = songs[0]; } if(autoStart){ var snum = forms['form'].playlist.selectedIndex; if(Player.url != songs[snum]){ Player.url = songs[snum]; } Player.controls.Play(); } } // Functions // // Discription: "PlayPause" will toggle playing and pausing if the same song is still selected, // otherwise it will load the newly selected song function PlayPause(list) { var snum = list.selectedIndex; if((Player.url == songs[snum] && Player.url != "") && Player.playState != 1){ if(Player.playState == 3){ Player.controls.Pause(); } else { Player.controls.Play(); } } else { Player.url = songs[snum]; Player.controls.Play(); } } // Discription: "Next" will move to the next music file if shuffle is off // otherwise it will load a random song. Calls PlayPause to start music. function Next(list) { var snum = list.selectedIndex; if (!shuffle) { if (snum == list.length-1) { snum = -1; } snum++; } else { var temp; do{ temp = Math.floor(Math.random()*songs.length); } while(temp == snum); snum = temp; } list.options[snum].selected = true; PlayPause(list); } // Discription: "Back" does the same thing as "Next" but moves backwads // through the list. If shuffle is on then picks a random song. function Back(list) { var snum = list.selectedIndex; if (!shuffle) { if (snum == 0){ snum = list.length; } snum--; } else { var temp; do{ temp = Math.floor(Math.random()*songs.length); } while(temp == snum); snum = temp; } list.options[snum].selected = true; PlayPause(list); } // Discription: Self explanitory. function Stop(){ Player.controls.Stop(); } // Discription: Makes the shuffle flag the same as the status of the CheckBox // The status of the checkbox (true/false) indicates if the box is checked function ToggleShuffle(CheckBox) { shuffle = CheckBox.status; } </SCRIPT> <script ID="StateChangeHandler" Language = "JavaScript" For = "Player" Event = playStateChange(NewState)> // Description: This is an interupt handler used to handle instances when the // state of the player changes to play or stop for example. //STATE.innerText = NewState; switch(NewState){ case 8: // Handles player after it just finishes playing through a song var num = document.forms['form'].playlist.selectedIndex; if (!shuffle){ if(num == document.forms['form'].playlist.length-1){ num = -1; } num++; } else { var temp; do{ temp = Math.floor(Math.random()*songs.length); } while(temp == num); num = temp; } document.forms['form'].playlist.options[num].selected = true; PreviousState = NewState; break; case 1: // Handles player after it stops if(PreviousState == 8){ var num = document.forms['form'].playlist.selectedIndex; Player.settings.autoStart = true; Player.url = songs[num]; PreviousState = NewState; } else if (PreviousState != 3 && PreviousState != 2){ Player.controls.Play(); Player.settings.autoStart = false; } else{ forms['form'].PlayPauseButton.innerHTML = PlayHTML.innerHTML; } break; case 3: // Handles player after it starts to play PreviousState = NewState; forms['form'].PlayPauseButton.innerHTML = "Pause"; shuffle = document.forms['form'].ShuffleSwitch.status; break; case 2: // Handles player after being paused PreviousState = NewState; forms['form'].PlayPauseButton.innerHTML = PlayHTML.innerHTML; break; default: } </SCRIPT>
Scrollable weblog entry place in entry w/ edit HTML checked
<DIV style="OVERFLOW: auto; WIDTH: 350px; HEIGHT: 200px"> YOUR TEXT HERE </DIV>
Pop up message on entry place in header
<script language="JavaScript">alert("TEXT") </script>
Popup message when leaving place in header
<BODY onUnload="alert('TEXT HERE');">
Customize your scrollbar place in header
<!-- Custom Colored Scrollbars : Blogring.net--> <style type="text/css"> <!-- BODY { scrollbar-face-color: #COLOR HERE; scrollbar-shadow-color: #COLOR HERE; scrollbar-highlight-color: #COLOR HERE; scrollbar-3dlight-color: #COLOR HERE; scrollbar-darkshadow-color: #COLOR HERE; scrollbar-track-color: #COLOR HERE; scrollbar-arrow-color: #COLOR HERE; --> </style> <!-- End Script: Blogring.net-->
Change comment & eprops to diff. words place in website stats
<!-- begin code provided by createblog.com --> <script language="javascript"> <!-- var links = document.getElementsByTagName ('a'); for (var l = 0; l < links.length; l++) { str = links[l].innerHTML; if (str.match (/\d+:\d+ (am|pm)/i)) links[l] else if (str.match (/read my profile/i)) links[l].innerHTML = str.replace (/read my profile/i, "411"); else if (str.match (/sign my guestbook/i)) links[l].innerHTML = str.replace (/sign my guestbook/i, "Gb0oKiE"); else if (str.match (/subscribe to USERNAME/i)) links[l].innerHTML = str.replace (/subscribe to /i, "CHANGE HERE"); else if (str.match (/Get trial subscription/i)) links[l].innerHTML = str.replace (/Get trial subscription/i, "CHANGE HERE"); else if (str.match (/eprop/i)) links[l].innerHTML = str.replace (/eprop/i, "CHANGE HERE"); else if (str.match (/comment/i)) links[l].innerHTML = str.replace (/comment/i, "CHANGE HERE"); else if (str.match (/USERNAME/i)) links[l].innerHTML = str.replace (/USERNAME/i, "CHANGE HERE"); else if (str.match (/reviews/i)) links[l].innerHTML = str.replace (/reviews/i, "CHANGE HERE"); else if (str.match (/events/i)) links[l].innerHTML = str.replace (/events/i, "CHANGE HERE"); else if (str.match (/subscribe/i)) links[l].innerHTML = str.replace (/subscribe/i, "CHANGE HERE"); else if (str.match (/xanga/i)) links[l].innerHTML = str.replace (/xanga/i, "CHANGE HERE"); else if (str.match (/USERNAME/i)) links[l].innerHTML = str.replace (/USERNAME/i, "CHANGE HERE"); else if (str.match (/sign out/i)) links[l].innerHTML = str.replace (/sign out/i, "CHANGE HERE"); }//--> </script> <!-- end code provided by createblog.com -->
Change words like Name, Bday etc place in website stats
<!-- begin code provided by createblog.com --> <script type="text/javascript"> // // © EasterEgg, http://www.xanga.com/easteregg // // For use at Xanga only. // // This script replaces any given word or text fragment with // whatever you want: new words and fragments, or even HTML! // // Actually it's pretty simple: add the words or fragments you // wish to replace to the array "oldWords" (each word placed // between double quotation marks, and separated by colons as you // can see below) and add their replacements to the array "newWords", // at the same position as the original words in "oldWords". // The example is pretty self-explaining. // // The script is case sensitive, meaning that if you add "something" // to "oldWords" array it will not recognize "SOMETHING", or "SoMetHInG". // // You can adjust the existing arrays in this code as you see fit, // as long as both arrays keep the same size (same amount of words // in both arrays), otherwise a script error will occur. // // Copy this entire code and paste in the webstats box at your // Look and Feel page. // // You're free to use this script as long as this comment remains intact, // and as long you won't use it to cripple the comments of your visitors; // after all, no one likes his/her words getting twisted... // function replaceWords() { // ***add the words or fragments you wish to replace below var oldWords = new Array( "Subscriptions", "Publish Comments", "add eProps", "eprop", "eProps", "add comments", "comment", "comments", "email it", "view entire profile", "sign my guestbook", "My Blogrings", "Posting Calendar", "Get Involved!", "sign out", "Name:", "Birthday:", "Gender:", "State:", "Country:", "Interests:", "Expertise:", "Website", "Email", "Member since:");
// *** add the replacing words or fragments below var newWords = new Array( "Subscriptions", "Publish Comments", "add eProps", "eprop", "eProps", "add comments", "comment", "comments", "email it", "view entire profile", "sign my guestbook", "My Blogrings", "Posting Calendar", "Get Involved!", "sign out", "Name:", "Birthday:", "Gender:", "State:", "Country:", "Interests:", "Expertise:", "Website", "Email", "Member since:");
allTableData = document.getElementsByTagName('td'); allTableHeaders = document.getElementsByTagName('th');
var collections = new Array(allTableData,allTableHeaders);
for (var k = 0; k < collections.length; ++k ) { for (var i = 0; i < collections[k].length; ++i ) { if (collections[k][i].innerHTML.indexOf('TABLE') == -1) { for ( var n = 0; n < oldWords.length; ++n ) { var indx = collections[k][i].innerHTML.indexOf(oldWords[n]) while (indx != -1) { var replacement = ''; indx = collections[k][i].innerHTML.indexOf(oldWords[n]); replacement = collections[k][i].innerHTML.replace(oldWords[n], newWords[n]); collections[k][i].innerHTML = replacement; break; } } } } } } replaceWords(); </script> <!-- end code provided by createblog.com -->
Replace Dates w/ your own words place in website stats
<script type="text/javascript"> // // ©2004 EasterEgg // // For use at Xanga only. // // While the date in your blogheader has a fixed format // (e.g. "Tuesday, March 16, 2004") you may want to use // another date format, accustomed to *your* preferences. // This script enables you to apply pretty much any date // format to your blogheader you like. // // Here's how it works: // The script collects all blogheaders and applies to them // a format you define by changing the value of the variable // "dateFormatStr" in the code below. Currently that value is // set to 'ddd, mm/dd/yy', which will result in a date that // looks like this: 'Tue, 03/16/04'. If you want to use slashes // instead of divisions as date separators, go right ahead; you // can even add HTML to the date format string if you like! // // ================= // listing of available constants (using the date // "Tuesday, March 16, 2004" as an example): // // dd = 16 // ddd = Tue // dddd = Tuesday // // mm = 03 // mmm = Mar // mmmm = March // // yy = 04 // yyyy = 2004 // // ================= // // You can use any combination of the above constants. Examples: // // 'mm/dd/yyyy' will result in '03/16/2004' // 'mmm dd, yy' will result in 'Mar 16, 04' // 'mm-dd-yy (dddd)' will result in '03-16-04 (Tuesday)' // '{ ddd, mmm dd, yyyy }', will result in '{ Tue, Mar 16, 2004 }' // // Get the general idea? // // Copy this entire code and paste it in the webstats box of your // Look and Feel page. // // You're free to use this script as long as this comment remains // intact. Future modifications allowed if due credit is given. // function formatEntryDate() { // ***** adjust the dateFormatStr below as you see fit // =================================================== dateFormatStr = '<table width="210"><tr><td bgcolor="#606060" style="font-family:Lucida Console; font-size:14px; color: #FFFFFF;">// mm.dd.yy</div></td></tr></table>'; // =================================================== function getMonthNr(sMonth) { months = new Array( "Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"); for (var n = 0; n < months.length; ++n) { if (months[n] == sMonth) { if ( n + 1 < 10) return '0' + (n + 1).toString() else return (n + 1).toString(); } } } allDivs = document.getElementsByTagName('div'); for (var i = 0; i < allDivs.length; ++i) { if (allDivs[i].className == 'blogheader') { newDateFormat = dateFormatStr; // day entryDate = allDivs[i].innerHTML; dayLong = entryDate.substr(0, entryDate.indexOf(',')); // dddd dayShort = dayLong.substr(0, 3); // ddd tempStr = entryDate.substr(dayLong.length + 1); dayNr = tempStr.substr(tempStr.indexOf(',') - 2, 2); // dd newDateFormat = newDateFormat.replace('dddd', dayLong); newDateFormat = newDateFormat.replace('ddd', dayShort); newDateFormat = newDateFormat.replace('dd', dayNr); // month monthLong = tempStr.substr(1, tempStr.indexOf(',') - 3);// mmmm monthShort = monthLong.substr(0, 3); // mmm monthNr = getMonthNr(monthShort); // mm newDateFormat = newDateFormat.replace('mmmm', monthLong); newDateFormat = newDateFormat.replace('mmm', monthShort); newDateFormat = newDateFormat.replace('mm', monthNr); // year yearLong = tempStr.substr(tempStr.indexOf(',') + 2); // yyyy yearShort = yearLong.substr(2); // yy newDateFormat = newDateFormat.replace('yyyy', yearLong); newDateFormat = newDateFormat.replace('yy', yearShort); allDivs[i].innerHTML = newDateFormat; } } } formatEntryDate(); </script>
Scrollbar for subscriptions list place in website stats
<!-- begin code provided by createblog.com --> <script type="text/javascript"> // original by EasterEgg, xanga.com/easteregg // modified to reflect xanga's current html schemas function adjustSirListHeight() { // *** define the height of your SIR-list in the line below var sirListHeight = '300px'; var allTables = document.getElementsByTagName('tbody'); for (i=0; i < allTables.length; i++) { if ((allTables[i].innerHTML.indexOf('Sites I Read') != -1) && (allTables[i].innerHTML.toUpperCase().indexOf('<TABLE') == -1)) { sirlist = allTables[i].lastChild; temp = sirlist.firstChild.innerHTML; sirlist.removeChild(sirlist.firstChild); td = document.createElement('td'); div = document.createElement('div'); div.style.width = '190px'; div.style.height = sirListHeight; div.style.overflow = 'auto'; div.innerHTML = temp; td.appendChild(div); sirlist.appendChild(td); break; } } } if (navigator.userAgent.indexOf('Mac') == -1) if ((document.URL.indexOf('weblogs') == -1) && (document.URL.indexOf('guestbook') == -1) && (document.URL.indexOf('events') == -1) && (document.URL.indexOf('reviews') == -1)) adjustSirListHeight(); </script> <!-- end code provided by createblog.com -->
No right click or highlighting place in website stat
<!--Begin Script by Blogring.net --> <body bgcolor="" ondragstart="return false" onselectstart="return false" oncontextmenu="return false"> <!-- End script by Blogring.net -->
Border around your xanga place in header
<style type="text/css"> BODY{border-style:solid; border-top-width: 5px; border-color: ; border-bottom-width: 5px; border-color: ; border-left-width: 0px; border-color: ; border-right-width: 0px; border-color: ;} </style>
Switch Module Sides place in website stats
<!-- Switch Module Sides : Provided by Blogring.net --> <script language=javascript> // swaps sidebar position on default xanga site layout // by sean http://www.xanga.com/seanmeister function swapSidebar(){ var tds = document.getElementsByTagName("td") for (var i = 0; i < tds.length; i++){ if (tds[i] == "mainleft" || tds[i].width == "200"){ var sidebar = tds[i].cloneNode(true); //document.write.blogring.net tds[i].parentNode.appendChild(sidebar); tds[i].parentNode.removeChild(tds[i]); break; }} } swapSidebar(); </script> <!-- End Script : Provided by Blogring.net -->
Remove Posting Calendar, Get Involved place in website stats
<!-- Remove Various Things : Provided by Blogring.net --> <script language="javascript"><!-- if (location.href.match ("home.aspx")) { var ht = document.getElementsByTagName ('table'); //document.write.blogring.net for (var t = 0; t < 10; t++) { str = ht[t].cells[0].innerHTML; if (!str.match (/Sites I Read/i) && str.match (/(Posting Calendar|Get Involved!|Build Traffic!)/i)) ht[t].style.display = "none"; } } //--></script> <!-- End script : Provided by Blogring.net -->
Scrolling text in boxes place in header
<table> <TR> <td> <fieldset> <marquee direction="left" height=35 width=50 scrollamount="2"><font color=#CC3366 family="tahoma" size=1>WRITE HERE</font> </marquee> </fieldset> </td> <td> <fieldset> <marquee direction="down" height=35 width=50 scrollamount="1"><font color=#CC3366 family="tahoma" size=1> WRITE HERE</font> </marquee> </fieldset> </td> <td> <fieldset> <marquee direction="right" height=35 width=50 scrollamount="1"><font color=#CC3366 family="tahoma" size=1> WRITE HERE</font> </marquee> </fieldset> </td> <td> <fieldset> <marquee direction="left" height=35 width=50 scrollamount="1"><font color=#CC3366 family="tahoma" size=1> WRITE HEREfont> </marquee> </fieldset> </td> <td> <fieldset> <marquee direction="up" height=35 width=50 scrollamount="1"><font color=#CC3366 family="tahoma" size=1> WRITE HERE</font> </marquee> </fieldset> </td> <td> <fieldset> <marquee direction="down" height=35 width=53 scrollamount="1"><font color=#CC3366 family="tahoma" size=1>WRITE HERE</font> </marquee> </fieldset> </td> <td> </TABLE> |