//scroller width
var swidth=120;

//scroller height
var sheight=200;

//background color
var sbcolor='#dddddd';

//scroller's speed
var sspeed=1;

var msg=''

//Your messages go below:


msg +=
'<ul><li><a href="http://www.scamwatch.gov.au/content/index.phtml/itemId/862103" target="_blank" title="">SCAMwatch Telstra</a></li>'+
'<li>August 2011: SCAMwatch has received reports of a new twist on the computer remote access scam with callers now claiming to be from (or affiliated with) Telstra or BigPond.</li>'+
'<li> </li>'+
'<li><a href="http://www.ssoalertservice.net.au/view/e42d3ffefe3d187a741c9e4301a180c9" target="_blank" title="">SCAMwatch Windows</a></li>'+
'<li>There has been an increase in reports of scammers ringing potential victims to persuade them to install remote access software on their computers.'+
'Using social engineering tricks the scammers try to trick you into believing there is a problem with your computer as a pretext to persuading you to'+
' pay for a service you will not actually receive. If fooled, you could also expose your computer to other attacks, and your personal information could be used for identity theft.'+
'</li><li> </li>'+
'<li><a href="http://www.kabelco.com/tv/" target="_blank" title="">Remote Service Calls</a></li>'+
'<li>Kabelco now does remote service calls, conveniently saving you time and money</li>'+
'<li> </li>'+
'<li><a href="http://www.scamwatch.gov.au/content/index.phtml/tag/DomainNameRenewalScams" target="_blank" title="">Domain Name Renewal Scam</a></li>'+
'<li>Domain name renewal scams can work in one of two ways. You might be sent an invoice for a domain name that is very similar to your current domain name the scammer hopes that you don’t notice the difference and just pay the invoice.</li>'+
'<li> </li>'+
'<li><a href="http://www.scamwatch.gov.au/content/index.phtml/itemId/694322" target="_blank" title="">Spyware & key-loggers</a></li>'+
'<li>Spyware is a type of malicious software (also called ‘malware’) that scammers try to install on your computer. </li>'+
'<li> </li>'+
'<li><a href="http://www.kabelco.com/contact.php" target="_blank" title="">Website Hosting</a></li>'+
'<li>Kabelco Electronics also provide website hosting services, for web site creation, domain name registrations and renewals.</li>'+
'<li> </li>'+
'<li><a href="http://www.kabelco.com/support.php" target="_blank" title="">FREE Self Diagnosis</a></li>'+
'<li>Use the info and tools on our support page to fix the problem yourself, for FREE.</li>'+
'<li> </li>'+
'<li><a href="http://www.kabelco.com/contact.php" target="_blank" title="">Website Design</a></li>'+
'<li>Kabelco Electronics provides web design services, for web page creation, updating and even periodical maintenance.</li>'+
'<li> </li>'+
'<li><a href="http://www.scamwatch.gov.au/content/index.phtml/itemId/828889" target="_blank" title="">SCAM Awareness Videos</a></li>'+
'<li>View new scam awareness videos launched as part of the Australasian Consumer Fraud Taskforces 2011 National Consumer Fraud Week campaign.</li>'+
'<li> </li></ul>'+
'';



//End of your messages
// Begin the ticker code

var resumesspeed=sspeed
function start() {
if (document.all) iemarquee(ticker);
else if (document.getElementById)
ns6marquee(document.getElementById('ticker'));
}

function iemarquee(whichdiv){
iediv=eval(whichdiv)
sheight += 50;
iediv.style.pixelTop=sheight
iediv.innerHTML=msg 
sizeup=iediv.offsetHeight
ieslide()
}

function ieslide(){
if (iediv.style.pixelTop>=sizeup*(-1)){
iediv.style.pixelTop-=sspeed
setTimeout("ieslide()",100)
}
else{
iediv.style.pixelTop=sheight
ieslide()
}
}

function ns6marquee(whichdiv){
ns6div=eval(whichdiv)
sheight += 50;
ns6div.style.top=sheight + "px";
ns6div.innerHTML=msg
sizeup=ns6div.offsetHeight
ns6slide()
}
function ns6slide(){
if (parseInt(ns6div.style.top)>=sizeup*(-1)){
theTop = parseInt(ns6div.style.top)-sspeed
ns6div.style.top = theTop + "px";
setTimeout("ns6slide()",100)
}
else {
ns6div.style.top = sheight + "px";
ns6slide()
}
}

