<!--

function loadImages(gstrImagesPath) {
	if (document.images) {
	//	Primary Task Buttons
	  bb1_ship = new Image();
	  bb1_ship.src = gstrImagesPath + "/bb1_ship.gif";
	  bb1_ship_over = new Image();
	  bb1_ship_over.src = gstrImagesPath + "/bb1_ship_over.gif";

	  bb1_trak = new Image();
	  bb1_trak.src = gstrImagesPath + "/bb1_trak.gif";
	  bb1_trak_over = new Image();
	  bb1_trak_over.src = gstrImagesPath + "/bb1_trak_over.gif";

	  bb1_trns = new Image();
	  bb1_trns.src = gstrImagesPath + "/bb1_trns.gif";
	  bb1_trns_over = new Image();
	  bb1_trns_over.src = gstrImagesPath + "/bb1_trns_over.gif";

	  bb1_rate = new Image();
	  bb1_rate.src = gstrImagesPath + "/bb1_rate.gif";
	  bb1_rate_over = new Image();
	  bb1_rate_over.src = gstrImagesPath + "/bb1_rate_over.gif";

	  bb1_pick = new Image();
	  bb1_pick.src = gstrImagesPath + "/bb1_pick.gif";
	  bb1_pick_over = new Image();
	  bb1_pick_over.src = gstrImagesPath + "/bb1_pick_over.gif";

	  bb1_locn = new Image();
	  bb1_locn.src = gstrImagesPath + "/bb1_locn.gif";
	  bb1_locn_over = new Image();
	  bb1_locn_over.src = gstrImagesPath + "/bb1_locn_over.gif";

	  bb1_sply = new Image();
	  bb1_sply.src = gstrImagesPath + "/bb1_sply.gif";
	  bb1_sply_over = new Image();
	  bb1_sply_over.src = gstrImagesPath + "/bb1_sply_over.gif";

	}
}

function img_over(imgName) {
	if (document.images) {
		imgOver = eval(imgName + "_over.src");
		document [imgName].src = imgOver;
	}
}

function img_out(imgName) {
	if (document.images) {
		imgOut = eval(imgName + ".src");
		document [imgName].src = imgOut;
	}
}

// -->

