//POPUP FUNCTION FOR GENERAL SIZE
function openPopup(dest,width,height)
{
    if ( "undefined" == typeof width )
    {
        width = 495;
    }

    if ( "undefined" == typeof height )
    {
        height = 525;
    }

    thePopup = window.open(dest,'popupWindow','scrollbars=no,resizable=yes,width=' + width + ',height=' + height + ',left=50,top=10');

    if(thePopup.opener == null)
    {
        thePopup.opener = window;
    }
    thePopup.focus();
}

function SwapImage(swap, path) {
	document.LrgImg.src=path+swap+".jpg"
//	var theImg = "thumb"+swap;
//	var theImgID = document.getElementById(theImg);	
//	theImgID.src=path+swap+"-r.jpg";
}
function HiImage(swap, path) {
	var theImg = "thumb"+swap;
	var theImgID = document.getElementById(theImg);	
	theImgID.src=path+swap+"-r.jpg";
}
function OffImage(swap, path) {
	var theImg = "thumb"+swap;
	var theImgID = document.getElementById(theImg);	
	theImgID.src=path+swap+".jpg";
}
