// Use Freely as long as following disclaimer is intact :: //--------------------------------------------------------------- // Cross Browser Multi-Directional Scroller v1.1 18th January 2005 // This script written by Rik Comery. www.ricom.co.uk // For support, visit the "Resources" section at www.ricom.co.uk // All rights reserved. Article = new Array; i=0; /* DEFINE SCROLLER ELEMENTS Define new scroller elements here in the following format. Article[i] = new Array ("display text", "URL", "frame target to load link in");i++ Note: If you do not want the item to be a link, change the URL value to "none". */ Article[i] = new Array ("Wanted For Long Space Missions: Flexible Astronaut, Works Well With Others (SPACE.com)", "http://tickermyfeed.com/news.php/MHx8eWFob28=/wanted_for_long_space_missions_flexible_astronaut_works_well_with_others", "_blank");i++; Article[i] = new Array ("ADV: Add This Ticker to Your Website for Free", "http://tickermyfeed.com/adv.php/NA==", "_blank");i++; Article[i] = new Array ("Biotech salmon safe for eating: FDA (Reuters)", "http://tickermyfeed.com/news.php/MHx8eWFob28=/biotech_salmon_safe_for_eating_fda", "_blank");i++; Article[i] = new Array ("ADV: Slide in Banner Exchange for Webmasters", "http://tickermyfeed.com/adv.php/MTE=", "_blank");i++; Article[i] = new Array ("BP hikes asset sale target after oil spill: report (AFP)", "http://tickermyfeed.com/news.php/MHx8eWFob28=/bp_hikes_asset_sale_target_after_oil_spill_report", "_blank");i++; Article[i] = new Array ("ADV: Automated Link Exchange for Webmasters", "http://tickermyfeed.com/adv.php/MTI=", "_blank");i++; Article[i] = new Array ("Labor Day Is No Vacation for a Growing Number of Workers (LiveScience.com)", "http://tickermyfeed.com/news.php/MHx8eWFob28=/labor_day_is_no_vacation_for_a_growing_number_of_workers", "_blank");i++; Article[i] = new Array ("ADV: Win a Apple MacBook 13-inch Notebook Computer Now", "http://tickermyfeed.com/adv.php/NTk=", "_blank");i++; Article[i] = new Array ("Sanofi ready to raise bid if Genzyme talks: report (Reuters)", "http://tickermyfeed.com/news.php/MHx8eWFob28=/sanofi_ready_to_raise_bid_if_genzyme_talks_report", "_blank");i++; Article[i] = new Array ("ADV: Add a Breaking News Ticker to Your Web Browser", "http://tickermyfeed.com/adv.php/NTg=", "_blank");i++; Article[i] = new Array ("After 20 years of protection, owl declining but forests remain (McClatchy Newspapers)", "http://tickermyfeed.com/news.php/MHx8eWFob28=/after_20_years_of_protection_owl_declining_but_forests_remain", "_blank");i++; Article[i] = new Array ("In wake of Earl, U.S. eyes other potential storms (Reuters)", "http://tickermyfeed.com/news.php/MHx8eWFob28=/in_wake_of_earl_us_eyes_other_potential_storms", "_blank");i++; Article[i] = new Array ("Sceptical green urges smart billions to fight warming (AFP)", "http://tickermyfeed.com/news.php/MHx8eWFob28=/sceptical_green_urges_smart_billions_to_fight_warming", "_blank");i++; Article[i] = new Array ("Mass Extinction Threat: Earth on Verge of Huge Reset Button? (LiveScience.com)", "http://tickermyfeed.com/news.php/MHx8eWFob28=/mass_extinction_threat_earth_on_verge_of_huge_reset_button", "_blank");i++; Article[i] = new Array ("Double hand transplant patient shows new hands (AP)", "http://tickermyfeed.com/news.php/MHx8eWFob28=/double_hand_transplant_patient_shows_new_hands", "_blank");i++; Article[i] = new Array ("Diverse water sources key to food security: report (Reuters)", "http://tickermyfeed.com/news.php/MHx8eWFob28=/diverse_water_sources_key_to_food_security_report", "_blank");i++; Article[i] = new Array ("Focus of Gulf oil disaster shifts to finding the culprit (AFP)", "http://tickermyfeed.com/news.php/MHx8eWFob28=/focus_of_gulf_oil_disaster_shifts_to_finding_the_culprit", "_blank");i++; Article[i] = new Array ("Clams befouling Tahoe invade Adirondack lake in NY (AP)", "http://tickermyfeed.com/news.php/MHx8eWFob28=/clams_befouling_tahoe_invade_adirondack_lake_in_ny", "_blank");i++; ////// SCROLLER CONFIGURATION /////////////////////////////////////////////////////////////////// orientation = "vertical" // Orientation of scroller (Horizontal or vertical) scrollerWidth = "500" // Width of entire scroller. scrollerHeight = "350" // Height of Scroller. borderWidth = 0 // Width of border. (use 0 for no border). borderColour = "#006600" // Colour of scroller border. (Use either hexadecimal or text values. e.g. "#FF0000" or "Red") backColour = "#99CCCC" // Colour of scroller background. (Use either hexadecimal or text values. e.g. "#FF0000" or "Red") staticColour = "#000000" // Colour of scroller items that are NOT a link. (including scrollerDivider characters) stopScroll = 1 // Pause the scroller on mouseOver. (use 0 for no.) textAlignment="left" // Alignment of each scroller item. Only really makes a difference on vertical scroller // (center, left, right, justify) // Scroller Links linkFont = "Verdana, Arial, Helvetica, sans-serif" // Font of scroller links; linkWeight = "normal" // Weight of scroller links; linkColour = "#000000" // Colour of scroller links linkSize = "11" // Size of links (in points) linkDecoration = "none" // Decoration of links. (underline, overline, none) linkStyle = "regular" // Scroller Links On MouseOver slinkFont = "Verdana, Arial, Helvetica, sans-serif" // Font of scroller links; slinkWeight = "normal" // Weight of scroller links; slinkColour = "#FF0000" // Colour of scroller links slinkSize = "11" // Size of links (in points) slinkDecoration = "none" // Decoration of links. (underline, overline, none) slinkStyle = "regular" scrollerDivider = "
" // Character to place between each scroller item. // tags can be used if an image is required. // Use "0" for nothing. For Vertical scrollers, it is best to use "
" /* Because Netscape version 4 does not support this scroller, configure the values below so NS4 users do not see an error. In the scroller's place will be a static title which can be a link if require. The appearance of the static text (colour, scroller border etc) will be exactly the same as for the working version in other browsers. */ ns4Text = "This browser does not support this scroller"; // Alternative text to display in Netscape 4. ns4URL = "tickermyfeed.com"; // URL of link in NS4. If no URL is required, enter "none" ns4Target = "_top"; // Frame target for link in NS4 ////// DO NOT EDIT BELOW THIS LINE /////////////////////////////////////////////////////////////////// //Browser Sniffer var isIE = (document.getElementById && document.all)?true:false; var isNS4 = (document.layers)?true:false; var isNS6 = (document.getElementById && !document.all)?true:false; var isLoaded=false; style='
'); document.write('
');