//<!--
if (document.images){
	img_mapn = new newImg('images/global_img_none.gif');
	img_mapna = new newImg('images/global_img_northamerica.gif');
	img_mapla = new newImg('images/global_img_latinamerica.gif');
	img_mape = new newImg('images/global_img_europe.gif');
	img_mapap = new newImg('images/global_img_asiapacific.gif');
	img_mapgl = new newImg('images/global_img_global.gif');
}

function newImg(strImage){
	setImg = new Image();
	setImg.src = strImage;
	return setImg;
}

function cngPic(src_id, img_id){
	document.getElementById(src_id).src=img_id.src;
}
//-->
