function NzldispImg(i,w,h)	{
	document.getElementById("detailarea").innerHTML = "<img src='images/ba2006/nzl/" + i + ".gif' width='" + w + "' height='" + h +"'>"
	window.status = detailarea.innerHTML
}

function ParidispImg(i,w,h)	{
	document.getElementById("detailarea").innerHTML = "<img src='images/ba2006/pari/" + i + ".jpg' width='" + w + "' height='" + h +"'>"
	window.status = detailarea.innerHTML
}

function NewsDetail() {
window.open( '', 'mag', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=520,height=450,screenX=0,screenY=0,top=0,left=0');
}

function menuDisp(cat){
var catID=document.getElementById('cat'+cat);
var mcomID=document.getElementById('mcom'+cat);
var itemID=document.getElementById('item'+cat);
if(catID.className=='0'){
mcomID.style.display='none';
itemID.style.display='block';
document.getElementById('cat'+cat).innerHTML = "<img src='images/listarrow"+cat+"_2.gif' width='170' height='11' border='0'>";
catID.className='1';
}else{
mcomID.style.display='block';
itemID.style.display='none';
document.getElementById('cat'+cat).innerHTML = "<img src='images/listarrow"+cat+"_1.gif' width='170' height='11' border='0'>";
catID.className='0';
}
}