function showAM()
{
document.getElementById('pricelistindexAM').style.display="block";
document.getElementById('pricelistindexNZ').style.display="none";
document.getElementById('pricelistinfo').style.display="none";
}

function showNZ()
{
document.getElementById('pricelistindexAM').style.display="none";
document.getElementById('pricelistindexNZ').style.display="block";
document.getElementById('pricelistinfo').style.display="none";
}

function showInfo()
{
document.getElementById('pricelistindexAM').style.display="none";
document.getElementById('pricelistindexNZ').style.display="none";
document.getElementById('pricelistinfo').style.display="block";
}

//***********************************************************

/*
function sortNum(a,b) { return b-a} 
function fixH2(one,two,three) {
if (document.getElementById(one)) {
var obj=new Array(3);
var option=[one,two,three];
for(var i=0; i<option.length; i++) {
document.getElementById(option[i]).style.height="auto";
obj[i]=document.getElementById(option[i]).offsetHeight;
nh=obj.sort(sortNum);
} 
nh1=nh.splice(1,2);
for(var i=0; i<option.length; i++) {
document.getElementById(option[i]).style.height=nh+"px";
}
}
}
//
window.onload=function(){
fixH2('colwrap','rightcont','centercont');
}
*/
