/*
Interactive Image slideshow with text description
By Christian Carlessi Salvadó (cocolinks@c.net.gt). Keep this notice intact.
Visit http://www.dynamicdrive.com for script
*/


g_fPlayMode = 0;
g_iimg = -1;
g_imax = 0;
g_ImageTable = new Array();

function ChangeImage(fFwd)
{
if (fFwd)
{
if (++g_iimg==g_imax)
g_iimg=0;
}
else
{
if (g_iimg==0)
g_iimg=g_imax;
g_iimg--;
}
Update();
}

function getobject(obj){
if (document.getElementById)
return document.getElementById(obj)
else if (document.all)
return document.all[obj]
}

function Update(){
//getobject("_Ath_Slide").src = g_ImageTable[g_iimg][0];
getobject("_Ath_Slide").innerHTML = g_ImageTable[g_iimg][0];
getobject("_Ath_FileName").innerHTML = g_ImageTable[g_iimg][1];
getobject("_Ath_Img_X").innerHTML = g_iimg + 1;
getobject("_Ath_Img_N").innerHTML = g_imax;
}


function Play()
{
g_fPlayMode = !g_fPlayMode;
if (g_fPlayMode)
{
getobject("btnPrev").disabled = getobject("btnNext").disabled = false;
Next();
}
else 
{
getobject("btnPrev").disabled = getobject("btnNext").disabled = false;

}
}
function OnImgLoad()
{

}
function Prev()
{
ChangeImage(false);
}
function Next()
{
ChangeImage(true);
}


////configure below variables/////////////////////////////

//configure the below images and description to your own. 
g_ImageTable[g_imax++] = new Array ("<a href=\"javascript:winx=window.open('/images_mra/special_section/scams/charityscam1.jpg','newWnd','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=625,height=600, left=200, top=200');winx.focus();\"><img src=\"/images_mra/special_section/scams/charityscam1_sm.jpg\" width=\"220\" height=\"220\" border=\"0\"></a>", "<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td colspan=\"2\"></td></tr><tr><td class=\"shSubheadblue\" colspan=\"2\" height=\"25\">Fake charity scam<br /></td></tr><tr><td><span class=\"interactive\"><img src=\"/images_mra/boxes/square-blue.gif\" height=6 width=6 style=\"margin:0px 5px 1px 0px;\"/><b>Phony auction listing</b><p class=\"interactive\">This image shows an item listing from a spoofed eBay store, one that uses the eBay logo and a URL that connects to what looks like an eBay Power Seller's page. The scammer makes a vague promise that donations will give child victims of the California wildfires \"a hope.\" Upon clicking the link, the victim is taken to a bogus, but credible-looking site. If the victim makes a donation to the \"charity,\" the money instead goes to a criminal.</td></tr></table>");
g_ImageTable[g_imax++] = new Array ("<a href=\"javascript:winx=window.open('/images_mra/special_section/scams/charityscam2.jpg','newWnd','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=625,height=800, left=200, top=200');winx.focus();\"><img src=\"/images_mra/special_section/scams/charityscam2_sm.jpg\" width=\"220\" height=\"220\" border=\"0\"></a>", "<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td colspan=\"2\"></td></tr><tr><td class=\"shSubheadblue\" colspan=\"2\" height=\"25\">Fake charity scam<br /></td></tr><tr><td><span class=\"interactive\"><img src=\"/images_mra/boxes/square-blue.gif\" height=6 width=6 style=\"margin:0px 5px 1px 0px;\"/><b>Bogus e-mail from the IRS</b><p class=\"interactive\">The IRS will never send unsolicited e-mails, but the criminal behind this phishing e-mail would have you believe otherwise. The sender posed as California State Assembly member Julie Brownley and asked for donations to help the victims of the Southern California wildfires. A legitimate-looking URL and IRS logo helps the e-mail look more convincing, but it's anything but genuine.<BR><BR>If you receive an e-mail like this one, don't click on the link, since doing so may install malicious software on your computer. Report e-mails using the IRS's name to <a href=\"mailto:phishing@irs.gov\">phishing@irs.gov</a>.</td></tr></table>");

//extend the above list as desired
g_dwTimeOutSec=1

////End configuration/////////////////////////////

if (document.getElementById||document.all)
window.onload=Play



