if (document.images) {
	arrowon = new Image();
	arrowon.src = "/_img/m_arrow_a.gif";
	arrowoff = new Image();
	arrowoff.src = "/_img/m_arrow_n.gif";
/*
	img1on = new Image();
	img1on.src = "/_img/m_arrow_a.gif";
	img1off = new Image();
	img1off.src = "/_img/m_arrow_n.gif";

	img2on = new Image();
	img2on.src = "/_img/m_arrow_a.gif";
	img2off = new Image();
	img2off.src = "/_img/m_arrow_n.gif";

	img3on = new Image();
	img3on.src = "/_img/m_arrow_a.gif";
	img3off = new Image();
	img3off.src = "/_img/m_arrow_n.gif";

	img4on = new Image();
	img4on.src = "/_img/m_arrow_a.gif";
	img4off = new Image();
	img4off.src = "/_img/m_arrow_n.gif";

	img5on = new Image();
	img5on.src = "/_img/m_arrow_a.gif";
	img5off = new Image();
	img5off.src = "/_img/m_arrow_n.gif";
*/	

	sitemap_on = new Image();
	sitemap_on.src = "/_img/h_sitemap_a.gif";
	sitemap_off = new Image();
	sitemap_off.src = "/_img/h_sitemap_n.gif";

	feedback_on = new Image();
	feedback_on.src = "/_img/h_feedback_a.gif";
	feedback_off = new Image();
	feedback_off.src = "/_img/h_feedback_n.gif";

	
	img10on = new Image();
	img10on.src = "/_img/partner_logo/1_a.gif";
	img10off = new Image();
	img10off.src = "/_img/partner_logo/1_n.gif";
	
	img11on = new Image();
	img11on.src = "/_img/partner_logo/2_a.gif";
	img11off = new Image();
	img11off.src = "/_img/partner_logo/2_n.gif";

	img12on = new Image();
	img12on.src = "/_img/partner_logo/3_a.gif";
	img12off = new Image();
	img12off.src = "/_img/partner_logo/3_n.gif";

	img13on = new Image();
	img13on.src = "/_img/partner_logo/4_a.gif";
	img13off = new Image();
	img13off.src = "/_img/partner_logo/4_n.gif";

	img14on = new Image();
	img14on.src = "/_img/partner_logo/5_a.gif";
	img14off = new Image();
	img14off.src = "/_img/partner_logo/5_n.gif";
}

function imgOn(imgName) {
	if (document.images) { 
		document.images[imgName].src = eval(imgName + "_on.src"); 
	}
}

function imgOff(imgName) {
	if (document.images) { 
		document.images[imgName].src = eval(imgName + "_off.src"); 
	}
}

function arrowOn(imgName) {
	if (document.images) { 
		document.images[imgName].src = arrowon.src; 
	}
}

function arrowOff(imgName) {
	if (document.images) { 
		document.images[imgName].src = arrowoff.src; 
	}
}

    function popUp(url, w, h)
    {
        var winparams = "top=100,left=150,width="+w+",height="+h+",copyhistory=no,directories=no,topmargin=0,leftmargin=0,rightmargin=0,menubar=no,location=no,status=yes,resizable=no,scrollbars=no";         
        window.open(url, 'wndStruct', winparams); 
        return false;
    }