document.write(''); document.write('
'); document.write('
'); document.write(' STOP THEFT IN ACTION'); document.write('
'); document.write(''); document.write('
'); document.write('
'); document.write(' 2 Days Ago'); document.write('
'); document.write(' Most recent recovery . . . . . . . . . . . . . . . . . . . . . . . . '); document.write('
'); document.write('
'); var pausecontent=new Array(); pausecontent[0] = "
USQ29980
7/29/2010
Laptop found during a police search. Owner notified
"; pausecontent[1] = "
USR81585
7/28/2010
Good Samaritan found a university-owned laptop in abandoned storage unit, Garden City, Kansas. Owner notified, will retrieve laptop.
"; pausecontent[2] = "
USQ16550
7/28/2010
Laptop separated from carton found at Lehigh Valley P.O. operations center, Bethlehem, PA. Owner notified and has retrieved laptop.
"; pausecontent[3] = "
USL96897
7/27/2010
Laptop found in university building by campus police in Ypsilanti, Mich. Owner notified, will retrieve laptop.
"; pausecontent[4] = "
USR94647
7/26/2010
Laptop found in taxicab by Good Samaritan. Owner notified, and is retrieving laptop.
"; pausecontent[5] = "
KCK03008
7/21/2010
Stolen laptop was found by a good samaritan and returned to the owner.
"; pausecontent[6] = "
USQ92256
7/20/2010
Laptop found and retrieved by owner.
"; pausecontent[7] = "
USM52980
7/16/2010
Laptop found in a rental house upon cleaning it out.
"; pausecontent[8] = "
USM63696
7/15/2010
A NJ transit passenger lost a laptop while trying to prevent a train from leaving by putting his hand and laptop through the closing doors. A good samaritan called STOP to find the owner. The owner has been notified.
"; pausecontent[9] = "
UST28455
7/15/2010
Air Canada passenger left laptop on plane to Boston Logan Airport. Owner notified and has retrieved laptop.
"; pausecontent[10] = "
USR92561
7/12/2010
Laptop left at TSA checkpoint in LaGuardia Airport, NYC, was recovered by TSA. Owner notified and retrieved laptop.
"; pausecontent[11] = "
USM66785
7/8/2010
Laptop was recovered at a NY airport.
"; pausecontent[12] = "
USH68017
7/2/2010
Laptop left at a bus stop in Alexandria, VA. Customer has recovered
"; pausecontent[13] = "
USQ70747
6/30/2010
Laptop was found on plane at Atlanta airport. Owner notified, will retrieve laptop
"; pausecontent[14] = "
USF11328
6/29/2010
Laptop found on street in Newark. Customer Notified
"; pausecontent[15] = "
USU28313
6/28/2010
Stolen laptop recovered and returned to school in Richmond, VA.
"; pausecontent[16] = "
USP09692
6/28/2010
Stolen laptop recovered and returned to school in Richmond, VA.
"; pausecontent[17] = "
USR22888
6/28/2010
Laptop has been found.
"; pausecontent[18] = "
USU11772
6/28/2010
Company-owned laptop found in an auctioned car while being prepped for resale. Owner was notified and retrieved the laptop.
"; pausecontent[19] = "
USR84928
6/22/2010
Laptop found by a good samaritan in Naples, FL. Spoke with owner and they are making arrangements to recover
"; pausecontent[20] = "
USU26371
6/17/2010
Stolen laptop recovered from a school in Richmond, VA. Owner has retrieved.
"; pausecontent[21] = "
USR86807
6/16/2010
Laptop recovered at McCarran Airport with the TSA. Notified company contact.
"; pausecontent[22] = "
USU11629
6/16/2010
Laptop found at TSA location at Kansas City Airport. TSA was able to locate passenger with information we provided before he got on the plane.
"; pausecontent[23] = "
USQ91169
6/14/2010
Lost laptop recovered in Honolulu Hawaii. Owner has retrieved.
"; pausecontent[24] = "
USQ29597
6/10/2010
Stolen laptop recovered after being purchased illegally at a yard sale in San Bernardino, CA. Owner has been notified & is making arrangements to retrieve.
"; /*********************************************** * Pausing up-down scroller- © Dynamic Drive (www.dynamicdrive.com) * This notice MUST stay intact for legal use * Visit http://www.dynamicdrive.com/ for this script and 100s more. ***********************************************/ function pausescroller(content, divId, divClass, delay){ this.content=content //message array content this.tickerid=divId //ID of ticker div to display information this.delay=delay //Delay between msg change, in miliseconds. this.mouseoverBol=0 //Boolean to indicate whether mouse is currently over scroller (and pause it if it is) this.hiddendivpointer=1 //index of message array for hidden div document.write('
'+content[0]+'
') var scrollerinstance=this if (window.addEventListener) //run onload in DOM2 browsers window.addEventListener("load", function(){scrollerinstance.initialize()}, false) else if (window.attachEvent) //run onload in IE5.5+ window.attachEvent("onload", function(){scrollerinstance.initialize()}) else if (document.getElementById) //if legacy DOM browsers, just start scroller after 0.5 sec setTimeout(function(){scrollerinstance.initialize()}, 500) } // ------------------------------------------------------------------- // initialize()- Initialize scroller method. // -Get div objects, set initial positions, start up down animation // ------------------------------------------------------------------- pausescroller.prototype.initialize=function(){ this.tickerdiv=document.getElementById(this.tickerid) this.visiblediv=document.getElementById(this.tickerid+"1") this.hiddendiv=document.getElementById(this.tickerid+"2") this.visibledivtop=parseInt(pausescroller.getCSSpadding(this.tickerdiv)) //set width of inner DIVs to outer DIV's width minus padding (padding assumed to be top padding x 2) this.visiblediv.style.width=this.hiddendiv.style.width=this.tickerdiv.offsetWidth-(this.visibledivtop*2)+"px" this.getinline(this.visiblediv, this.hiddendiv) this.hiddendiv.style.visibility="visible" var scrollerinstance=this document.getElementById(this.tickerid).onmouseover=function(){scrollerinstance.mouseoverBol=1} document.getElementById(this.tickerid).onmouseout=function(){scrollerinstance.mouseoverBol=0} if (window.attachEvent) //Clean up loose references in IE window.attachEvent("onunload", function(){scrollerinstance.tickerdiv.onmouseover=scrollerinstance.tickerdiv.onmouseout=null}) setTimeout(function(){scrollerinstance.animateup()}, this.delay) } // ------------------------------------------------------------------- // animateup()- Move the two inner divs of the scroller up and in sync // ------------------------------------------------------------------- pausescroller.prototype.animateup=function(){ var scrollerinstance=this if (parseInt(this.hiddendiv.style.top)>(this.visibledivtop+5)){ this.visiblediv.style.top=parseInt(this.visiblediv.style.top)-5+"px" this.hiddendiv.style.top=parseInt(this.hiddendiv.style.top)-5+"px" setTimeout(function(){scrollerinstance.animateup()}, 50) } else{ this.getinline(this.hiddendiv, this.visiblediv) this.swapdivs() setTimeout(function(){scrollerinstance.setmessage()}, this.delay) } } // ------------------------------------------------------------------- // swapdivs()- Swap between which is the visible and which is the hidden div // ------------------------------------------------------------------- pausescroller.prototype.swapdivs=function(){ var tempcontainer=this.visiblediv this.visiblediv=this.hiddendiv this.hiddendiv=tempcontainer } pausescroller.prototype.getinline=function(div1, div2){ div1.style.top=this.visibledivtop+"px" div2.style.top=Math.max(div1.parentNode.offsetHeight, div1.offsetHeight)+"px" } // ------------------------------------------------------------------- // setmessage()- Populate the hidden div with the next message before it's visible // ------------------------------------------------------------------- pausescroller.prototype.setmessage=function(){ var scrollerinstance=this if (this.mouseoverBol==1) //if mouse is currently over scoller, do nothing (pause it) setTimeout(function(){scrollerinstance.setmessage()}, 100) else{ var i=this.hiddendivpointer var ceiling=this.content.length this.hiddendivpointer=(i+1>ceiling-1)? 0 : i+1 this.hiddendiv.innerHTML=this.content[this.hiddendivpointer] this.animateup() } } pausescroller.getCSSpadding=function(tickerobj){ //get CSS padding value, if any if (tickerobj.currentStyle) return tickerobj.currentStyle["paddingTop"] else if (window.getComputedStyle) //if DOM2 return window.getComputedStyle(tickerobj, "").getPropertyValue("padding-top") else return 0 } // // Launch the scroller // new pausescroller(pausecontent, "stop_scrollbox_body", "someclass", 5000) document.write(' More recoveries >>'); document.write('
'); document.write('
');