

/*
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_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 ("", "<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td valign=\"top\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td></td></tr><tr><td class=\"verdanaBlackMedsp\">Scammers targeted PayPal account holders with this spoofed e-mail, captured by Sophos. Notice the sense of urgency -- customers are told they have 48 hours to respond. Security experts contend that a false sense of urgency is a red flag for vishing as well as phishing scams. Worried customers are urged to ''speed up the process'' by dialing a fraudulent number with an 805 area code. The scammers, however could operate from any area code, thanks to mobility of VoIP phones. Note: The number listed has been disconnected. Image courtesy of Sophos. </td></tr></table></td><td valign=\"top\" width=\"25\">&nbsp;</td><td valign=\"middle\" width=\"275\" align=\"center\"  bgcolor=\"#ffffff\"><A HREF=\"javascript:popUp('/images_mra/1newimages/vishing/paypalvox.jpg')\"><img src=\"/images_MRA/1NewImages/vishing_small.gif\" width=\"250\" height=\"200\" border=\"0\"></a> <br/><A HREF=\"javascript:popUp('/images_mra/1newimages/vishing/paypalvox.jpg')\" class=\"sidebar\">Larger image</a></td></tr></table>");
g_ImageTable[g_imax++] = new Array ("", "<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td valign=\"top\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td class=\"shSubhead\">The phony number</td></tr><tr><td height=\"10\"></td></tr><tr><td class=\"verdanaBlackMedsp\">After dialing the number from the e-mail, victims heard the automated message, \"Welcome to account verification. Please type your 16-digit card number.\" Fraudsters could capture anything typed on their computers.</td></tr><tr><td height=\"5\"></td></tr><tr><td><img src=\"/images_MRA/Autos/smltbluebox.gif\" width=\"8\" height=\"8\">&nbsp;&nbsp;<span class=\"verdanaBlackMedsp\"><a href=\"/brm/news/advice/scams/paypalvox.wav\"><b>Play the .wav file</b><\a> to hear the message victims heard if they dialed the number provided in the e-mail.</span></td></tr></table></td><td valign=\"top\" width=\"25\">&nbsp;</td><td valign=\"center\" class=\"shBoxBlue\" width=\"250\" align=\"right\" height=\"200\"><img src=\"/images_mra/1NewImages/Vishing/land_line_images/land_line_4.jpg\" width=\"249\" height=\"201\"></td></tr></table>");
//extend the above list as desired
g_dwTimeOutSec=2

////End configuration/////////////////////////////

if (document.getElementById||document.all)
window.onload=Play

