/*
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/customer_service_evaluator.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/customer_service_evaluator2_sm.jpg\" width=\"220\" height=\"300\" 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\">Mystery shopping 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 job offer</b><p class=\"interactive\">A Bankrate staff member's father received a letter offering him a job as a mystery shopper. It turned out to be an overpayment scam with a job offer cover story.<p class=\"interactive\">The job? Cash a $4,985 check, keep $850 as compensation and wire the rest to a fake relative in Winnipeg, Manitoba, Canada. Allegedly, this would allow him to evaluate MoneyGram's customer service in the process.</td></tr></table>");
g_ImageTable[g_imax++] = new Array ("<a href=\"javascript:winx=window.open('/images_mra/special_section/scams/customer_evaluation.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/customer_evaluation2_sm.jpg\" width=\"220\" height=\"300\" 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\">Mystery shopping 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>Evaluation: making it look legitimate</b><p class=\"interactive\">Included with the letter was an evaluation sheet that the mystery shopper is instructed to fill out after wiring the money. The form asks the shopper to score MoneyGram's customer service on professionalism, presentation and efficiency based on personal experience while making the wire transfer.</td></tr></table>");
g_ImageTable[g_imax++] = new Array ("<a href=\"javascript:winx=window.open('/images_mra/special_section/scams/unethical_behavior.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/unethical_behavior2_sm.jpg\" width=\"220\" height=\"300\" 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\">Mystery shopping 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>The code of unethical behavior</b><p class=\"interactive\">In addition to the letter and somewhat realistic-looking evaluation sheet, the job offer included a business conduct and ethics code that new shoppers agree to by accepting the job.<p class=\"interactive\">Besides grammatical problems, the policy includes several red flags, such as the line: ''The nature of the job warrants you to keep your assignment confidential at all times.''</td></tr></table>");
g_ImageTable[g_imax++] = new Array ("<a href=\"javascript:winx=window.open('/images_mra/special_section/scams/scam_check.jpg','newWnd','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=625,height=450, left=200, top=200');winx.focus();\"><img src=\"/images_mra/special_section/scams/scam_check_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\">Mystery shopping 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>The counterfeit check</b><p class=\"interactive\">The biggest red flag was the counterfeit check itself. The business listed on the check -- a real hotel management company -- said its employees did not write the check.<p class=\"interactive\">Currently, the United States Secret Service is investigating the case.</td></tr></table>");


//extend the above list as desired
g_dwTimeOutSec=1

////End configuration/////////////////////////////

if (document.getElementById||document.all)
window.onload=Play



