/*
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/irsscam1.jpg','newWnd','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=730,height=647, left=200, top=200');winx.focus();\"><img src=\"/images_mra/special_section/scams/irsscam1_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><span class=\"interactive\"><img src=\"/images_mra/boxes/square-blue.gif\" height=6 width=6 style=\"margin:0px 5px 1px 0px;\"/><b>The bait</b><p class=\"interactive\">In this example, the e-mail greets the consumer by name. Otherwise, the message proves typical, offering a low refund amount and providing a link to claim the money.<BR><BR>Notice the funny, but alarming warning in red font. According to Paul Wood, MessageLabs senior analyst, a common feature of refund phishing e-mails includes lines such as \"Note: Deliberate wrong inputs will be prosecuted by law.\"<BR><BR>Consider any unsolicited e-mail from the IRS fake, even if it has a personalized greeting. Report it to <a href=\"mailto:phishing@irs.gov\">phishing@irs.gov</a>.</td></tr></table>");
g_ImageTable[g_imax++] = new Array ("<a href=\"javascript:winx=window.open('/images_mra/special_section/scams/irsscam2.jpg','newWnd','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=719,height=751, left=200, top=200');winx.focus();\"><img src=\"/images_mra/special_section/scams/irsscam2_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><span class=\"interactive\"><img src=\"/images_mra/boxes/square-blue.gif\" height=6 width=6 style=\"margin:0px 5px 1px 0px;\"/><b>The copycat \"Where's My Refund?\" page</b><p class=\"interactive\">Following the link in a refund e-mail will likely land you on a spoofed IRS Web page. This image shows a copycat \"Where's My Refund\" page, which is a real tool on the IRS Web site. The actual refund finder will not ask for debit card information.<BR><BR>Consumers should never click on links in e-mails or open attachments to track down a refund. The IRS does not send unsolicited e-mails. Instead, taxpayers should visit <a href=\"http://www.irs.gov\">www.irs.gov</a> and click on \"Where's My Refund?\"</td></tr></table>");
g_ImageTable[g_imax++] = new Array ("<a href=\"javascript:winx=window.open('/images_mra/special_section/scams/irsscam3.jpg','newWnd','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=719,height=717, left=200, top=200');winx.focus();\"><img src=\"/images_mra/special_section/scams/irsscam3_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><span class=\"interactive\"><img src=\"/images_mra/boxes/square-blue.gif\" height=6 width=6 style=\"margin:0px 5px 1px 0px;\"/><b>The bogus tax refund form</b><p class=\"interactive\">After typing in a refund amount and filing status, just as a consumer would using the real \"Where's My Refund?\" tool, victims are taken to a refund claim form, which they are supposed to fill out for direct deposit. <BR><BR>Instead of getting a refund, people could become identity theft victims by completing such a form.<BR><BR>Individuals who want their refund direct deposited have to include bank account information on their tax return. The IRS will not initiate contact for this reason.</td></tr></table>");

//extend the above list as desired
g_dwTimeOutSec=1

////End configuration/////////////////////////////

if (document.getElementById||document.all)
window.onload=Play


