var fieldList = new Array( "p1", "p2", "p3", "p4", "p5", "p6", "p7", "p8", "p9", "p10", "p11" );
var viewList = new Array();
	viewList[ "p1" ] = "microbulk1.jpg";
	viewList[ "p2" ] = "microbulk2.jpg";
	viewList[ "p3" ] = "microbulk3.jpg";
	viewList[ "p4" ] = "microbulk4.jpg";
	viewList[ "p5" ] = "microbulk5.jpg";
	viewList[ "p6" ] = "microbulk6.jpg";
	viewList[ "p7" ] = "microbulk7.jpg";
	viewList[ "p8" ] = "microbulk8.jpg";
	viewList[ "p9" ] = "microbulk9.jpg";
	viewList[ "p10" ] = "microbulk10.jpg";
	viewList[ "p11" ] = "microbulk11.jpg";

var textList = new Array();
	textList[ "p1" ] = "This busy laser cutting facility has four lasers, and runs around the clock.  Running out of nitrogen and oxygen to process stainless steel, aluminum and steel is not a option.  To complicate matters further, the space available outside their facility to install traditional upright stand-tanks of 9000 gallons or larger was not a viable option, due to the space required for the tanks, and to have a 45’ tractor-trailer supply them.  The solution: a series of compact 500 gallon high pressure microbulk tanks and smaller delivery trucks.  Tight property conditions are not a problem for microbulk supply.";
	textList[ "p2" ] = "This compact ‘tank farm’ at a fabricating plant in Winnipeg, supplies all of the customer’s requirements for oxygen, nitrogen and argon.  By switching from cylinders, which were scattered throughout the plant, this facility was able to make better use of their plant floor area, increase safety, reduce handling time, eliminate having to constantly check cylinder gas inventory, and eliminated ever having to re-order or run the risk of running out of gas again.";
	textList[ "p3" ] = "Another load of microbulk tanks arrives from the factory in Minnesota, destined for a customer in the Interlake region.  With microbulk tank sizes ranging from 230 litres to 3000 litres, we can supply virtually any volume requirement in terms of monthly total consumption, or hourly flow rate.";
	textList[ "p4" ] = "Capable of up to 6,000 cubic feet per hour peak demand at 470 psi, this installation is capable of supporting two or more lasers cutting a variety of materials.&nbsp;  The benefits to this fabricator include increased safety, additional shop floor space, no user involvement and no time wasted changing out bulky cylinder clusters or portable liquid tanks, greatly reduced vent losses, and the economy of buying nitrogen at bulk price levels.";
	textList[ "p5" ] = "When space inside the shop was at a premium, this stainless steel welding and laser cutting fabricator went from the clutter of several Portable Liquid Cylinders inside their shop to a space efficient and externally mounted 2,000 litre Microbulk nitrogen tank.";
	textList[ "p6" ] = "This progressive fabricator of light gauge metal products enjoys the flexibility to process both mild steel and stainless steel on their laser machines. Low entry costs, 100% up-time reliability, and flexibility to expand their nitrogen assist gas needs when they need it, characterize this single 2,000 litre Very High Pressure Microbulk tank installation. Optional satellite telemetry provides uninterrupted supply, gas consumption information, and eliminates the need for operator involvement in the entire gas supply system.";
	textList[ "p7" ] = "This 24 hour per day, 5 laser lights-out facility which specializes in stainless steel laser processing, employs three 2,000 litre Very High Pressure Microbulk tanks in parallel to provide up to 18,000 cubic feet per hour peak demand nitrogen assist gas, at pressures at a consistent 470 psi.";
	textList[ "p8" ] = "The key to our intelligent gas supply system is the digital Cyl Tel tank telemetry monitor.&nbsp;  When combined with our optional satellite telemetry package, we can remotely determine when to refill your tank, eliminating the need for your staff to constantly check cylinder contents, or call in readings to the gas supplier.";
	textList[ "p9" ] = "Vaporizers allow the condensed cryogenic liquid that is stored in our Microbulk tanks to be converted into gas to meet your plasma or laser cutting equipment needs.&nbsp;  Sized to meet your requirements, most of the equipment needed to get you up and running is in stock right now.";
	textList[ "p10" ] = "Smaller, lighter, and faster installation times allow for our bulk solution to improve your bottom line long before a traditional bulk tank.&nbsp;  These compact tanks come in a variety of sizes, pressures, and delivery options, and depending on the situation, they can be installed outside your building or even indoors.";
	textList[ "p11" ] = "Pre-cast concrete slabs provide a fully engineered solution to externally mount your Microbulk tanks, whether in summer or winter.&nbsp;  Traditional bulk supply solutions often need to be delayed until spring so that substantial concrete pads can be poured for the large and cumbersome traditional stand tank.&nbsp;  Our installations can be done quickly and at a lower cost, while also allowing a bulk option for locations that have limited space for traditional bulk tanks and large delivery trailers.";

function loadPictures ( fieldList ) {
	for( var i =0; i<fieldList.length; i++ ) {
		eval( fieldList[ i ] + '_on = new Image();');
		eval( fieldList[ i ] + '_on.src = "../../images/' + fieldList[ i ] + 'a.jpg";');
		eval( fieldList[ i ] + '_off = new Image();');
		eval( fieldList[ i ] + '_off.src = "../../images/' + fieldList[ i ] + '.jpg";');
		eval( fieldList[ i ] + '_mainImg = new Image();');
		eval( fieldList[ i ] + '_mainImg.src = "../../images/' + viewList[ fieldList[ i ] ] + '";');
	}
}

function imgOn( imgName ) {
	if (document.images) {
		document[ imgName ].src = eval( imgName + "_on.src");
	}
}

function imgOff( imgName ) {
	if ( document.images ) {
		document[ imgName ].src = eval( imgName + "_off.src");
	}
}
function setMainImg( id ) {
	if ( document.images ) {
		document[ 'mainPic' ].src = eval( id + "_mainImg.src" );
	}
}

var curImgId = "";
var curId = 0;
function pickImg( id ) {

	if ( curImgId != "" ) {
		imgOff( curImgId );
	}

	var text = textList[ id ];
	WriteLayer('descriptionText',null,text);
	imgOn( id );
	setMainImg( id );
	curImgId = id;
}
function moveImg ( cnt ) {
	var upSub = (fieldList.length-1);
	for( i=0;i<fieldList.length;i++) {
		if ( curImgId == fieldList[ i ] ) {
			curId = i;
			i=fieldList.length;
		}
	}
	if ( curId + cnt < 0 ) {
		curId = curId+cnt+fieldList.length;
	} else if ( curId + cnt > upSub ) {
		curId = curId+cnt-fieldList.length;
	} else {
		curId = curId + cnt;
	}
	pickImg( fieldList[ curId ] );
}

function WriteLayer(ID,parentID,URL) {
if (document.layers) {
var oLayer;
if(parentID){
oLayer = eval('document.' + parentID + '.document.' + ID + '.document');
}else{
oLayer = document.layers[ID].document;
}
oLayer.open();
oLayer.write(URL);
oLayer.close();
}
else if (parseInt(navigator.appVersion)>=5&&navigator.
appName=="Netscape") {
document.getElementById(ID).innerHTML = URL;
}
else if (document.all) document.all[ID].innerHTML = URL
}
if ( document.images ) {
	loadPictures( fieldList );
}

