var NowImg = 1;
var bStart = 0;
var bStop =0;

function Search(name)
{
	titleSearchForm.submit();
}

//add event function
function addEvent(obj, evType, fn){ 
    if (obj.addEventListener){ 
        obj.addEventListener(evType, fn, true); 
        return true; 
    } else if (obj.attachEvent){ 
        var r = obj.attachEvent("on"+evType, fn); 
        return r; 
    } else { 
        return false; 
    } 
}

// Find all link elements and add an onfocus attribte and value
function hideFocusBorders(){
    var theahrefs = document.getElementsByTagName("a");
    if (!theahrefs){return;}
    for(var x=0;x!=theahrefs.length;x++){
    theahrefs[x].onfocus = function stopLinkFocus(){this.hideFocus=true;};
    }
}

//event added using the addEvent() function above
addEvent(window, 'load', hideFocusBorders);

function fnToggle() 
{
	var next = NowImg + 1;

	if(next == MaxImg+1) 
	{
		NowImg = MaxImg;
		next = 1;
	}
	if(bStop!=1)
	{

		if(bStart == 0)
		{
			bStart = 1;		
			setTimeout('fnToggle()', 4000);
			return;
		}
		else
		{
			oTransContainer.filters[0].Apply();

			document.images['oDIV'+next].style.display = "";
			document.images['oDIV'+NowImg].style.display = "none"; 

			oTransContainer.filters[0].Play(duration=2);

			if(NowImg == MaxImg) 
				NowImg = 1;
			else
				NowImg++;
		}
		setTimeout('fnToggle()', 4000);
	}
}

function changImg(no){
    if (no == 1)
    {
        document.all['img1'].src='pagehdr/s_1-2.gif'
        document.all['img2'].src='pagehdr/s_2.gif'
        document.all['img3'].src='pagehdr/s_3.gif'
    }
    else if (no == 2)
    {
        document.all['img1'].src='pagehdr/s_1.gif'
        document.all['img2'].src='pagehdr/s_2-2.gif'
        document.all['img3'].src='pagehdr/s_3.gif'
    }
    else if (no == 3)
    {
        document.all['img1'].src='pagehdr/s_1.gif'
        document.all['img2'].src='pagehdr/s_2.gif'
        document.all['img3'].src='pagehdr/s_3-2.gif'
    }
}

function toggleTo(img)
{
	bStop=1;
	if(img==1)
	{
			document.images['oDIV1'].style.display = "";
			document.images['oDIV2'].style.display = "none"; 
			document.images['oDIV3'].style.display = "none"; 
	}
	else if(img==2)
	{
			document.images['oDIV2'].style.display = "";
			document.images['oDIV1'].style.display = "none"; 
			document.images['oDIV3'].style.display = "none"; 
	}
	else if(img==3)
	{
			document.images['oDIV3'].style.display = "";
			document.images['oDIV1'].style.display = "none"; 
			document.images['oDIV2'].style.display = "none"; 
	}
}