var slidespeed=3000;
var slideimages=new Array('image_550994814.jpg', 'image_1690590171.jpg', 'image_1244096183.jpg', 'image_1687936866.jpg', 'image_1802153121.jpg', 'image_1558138148.jpg', 'image_804233261.jpg', 'image_284638831.jpg', 'image_682728764.jpg', 'image_1260682611.jpg', 'image_1776394605.jpg', 'image_864986626.jpg', 'image_659144124.jpg', 'image_189597162.jpg', 'image_1392099830.jpg', 'image_931360973.jpg')
var slideimg=new Array('550994814', '1690590171', '1244096183', '1687936866', '1802153121', '1558138148', '804233261', '284638831', '682728764', '1260682611', '1776394605', '864986626', '659144124', '189597162', '1392099830', '931360973')
var slideimgalt=new Array('', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '')
var slideimgPath=new Array('http://imgsvr550994814.preferredhomesonline.com/components/com_pho/images/wb_images/image_550994814.jpg', 'http://imgsvr1690590171.preferredhomesonline.com/components/com_pho/images/wb_images/image_1690590171.jpg', 'http://imgsvr1244096183.preferredhomesonline.com/components/com_pho/images/wb_images/image_1244096183.jpg', 'http://imgsvr1687936866.preferredhomesonline.com/components/com_pho/images/wb_images/image_1687936866.jpg', 'http://imgsvr1802153121.preferredhomesonline.com/components/com_pho/images/wb_images/image_1802153121.jpg', 'http://imgsvr1558138148.preferredhomesonline.com/components/com_pho/images/wb_images/image_1558138148.jpg', 'http://imgsvr804233261.preferredhomesonline.com/components/com_pho/images/wb_images/image_804233261.jpg', 'http://imgsvr284638831.preferredhomesonline.com/components/com_pho/images/wb_images/image_284638831.jpg', 'http://imgsvr682728764.preferredhomesonline.com/components/com_pho/images/wb_images/image_682728764.jpg', 'http://imgsvr1260682611.preferredhomesonline.com/components/com_pho/images/wb_images/image_1260682611.jpg', 'http://imgsvr1776394605.preferredhomesonline.com/components/com_pho/images/wb_images/image_1776394605.jpg', 'http://imgsvr864986626.preferredhomesonline.com/components/com_pho/images/wb_images/image_864986626.jpg', 'http://imgsvr659144124.preferredhomesonline.com/components/com_pho/images/wb_images/image_659144124.jpg', 'http://imgsvr189597162.preferredhomesonline.com/components/com_pho/images/wb_images/image_189597162.jpg', 'http://imgsvr1392099830.preferredhomesonline.com/components/com_pho/images/wb_images/image_1392099830.jpg', 'http://imgsvr931360973.preferredhomesonline.com/components/com_pho/images/wb_images/image_931360973.jpg')
//specify corresponding links
//var slidelinks=new Array("","","")
var newwindow=1 //open links in new window? 1=yes, 0=no
var imageholder=new Array()
var ie=document.all
for (i=0;i';
return overlib(html, '', '', BELOW, RIGHT, WIDTH, 100, CSSCLASS, FGCLASS, 'fgClass', BGCLASS, 'bgClass', CELLPAD, 3)
}
function showTh2Reg(name)
{
imgSrc = 'http://www.6179mitre.info/components/com_pho/images/wb_images/thumb2_' + name;
src = 'http://www.6179mitre.info/images/login_to_view.gif';
html = '
';
return overlib(html, '', '', BELOW, RIGHT, WIDTH, 100, CSSCLASS, BGCLASS, 'bgClass', FGCOLOR, 'transparent', FGBACKGROUND, imgSrc, CELLPAD, 3)
}
var number;
var current = 0;
var prev = 0;
function changeImg(name, number)
{
for (i = 0; i < slideimages.length; i++)
{
if (slideimages[i] == name) document.images.slide.src = slideimgPath[i];
}
document.getElementById('bigImg').href = 'http://www.6179mitre.info/components/com_pho/images/wb_images/' + name;
for(j=0;j 1)
{
whichimage = 1;
}
else if (whichimage == 0 && prev != 0)
{
whichimage = 0;
}
document.images.slide.src=imageholder[whichimage].src
document.images.slide.alt = imageholder[whichimage].alt;
document.getElementById('bigImg').href = imageholder[whichimage].src;
document.getElementById('imgAlt').innerHTML = imageholder[whichimage].alt;
//border start
document.getElementById('550994814').style.borderColor = '#ffffff';
document.getElementById('1690590171').style.borderColor = '#ffffff';
document.getElementById('1244096183').style.borderColor = '#ffffff';
document.getElementById('1687936866').style.borderColor = '#ffffff';
document.getElementById('1802153121').style.borderColor = '#ffffff';
document.getElementById('1558138148').style.borderColor = '#ffffff';
document.getElementById('804233261').style.borderColor = '#ffffff';
document.getElementById('284638831').style.borderColor = '#ffffff';
document.getElementById('682728764').style.borderColor = '#ffffff';
document.getElementById('1260682611').style.borderColor = '#ffffff';
document.getElementById('1776394605').style.borderColor = '#ffffff';
document.getElementById('864986626').style.borderColor = '#ffffff';
document.getElementById('659144124').style.borderColor = '#ffffff';
document.getElementById('189597162').style.borderColor = '#ffffff';
document.getElementById('1392099830').style.borderColor = '#ffffff';
document.getElementById('931360973').style.borderColor = '#ffffff';
number = imageholder[whichimage].name;
document.getElementById(number).style.borderColor = 'red';
//border end
prev = whichimage - 1;
whichimage = whichimage + 1;
if (whichimage == slideimages.length)
{
whichimage = 0;
//prev = slideimages.length - 2;
}
}
function doLightBox()
{
var bigImg = document.getElementById('bigImg');
var image = document.images.slide.src;
var pos1 = image.lastIndexOf('image_');
var pos2 = image.lastIndexOf('.jpg');
var name = image.substring(pos1, pos2);
var number = name.substring(6);
var evt = 'click';
var fireOnThis = document.getElementById('photo' + number);
if( document.createEvent )
{
var evObj = document.createEvent('MouseEvents');
evObj.initEvent( evt, true, false );
fireOnThis.dispatchEvent(evObj);
}
else if( document.createEventObject )
{
fireOnThis.fireEvent('on'+evt);
}
return false;
}