<!--
function cngBox1(A,B) {
	document.getElementById('box-cat1-'+A).id = 'box-cat1-'+B;
	document.getElementById('box-cat2-'+B).id = 'box-cat2-'+A;
	document.getElementById('box-item-'+B).id = 'box-item-'+A;
}
function cngBox2(A,B) {
	document.getElementById('box-cat1-'+B).id = 'box-cat1-'+A;
	document.getElementById('box-cat2-'+A).id = 'box-cat2-'+B;
	document.getElementById('box-item-'+A).id = 'box-item-'+B;
}

function openWin(URL,NAME,W,H) {
	newwin = window.open(URL,NAME,'status=yes,scrollbars=yes,resizable=yes,width=' + W + ',height=' + H);
	newwin.focus();
}
//-->

