<!--
function openitem(id){
	var newwindow = window.open('/itmpop/' + id + '/','mywindow','width=700,height=500,left=100,top=100,screenX=100,screenY=100,resizable=yes,scrollbars=no,toolbar=no')
	if(window.focus){
		newwindow.focus();
	}
	return false;
}

function resizewindow(w, h){
	if(parseInt(navigator.appVersion) > 3){
		if(navigator.appName == "Netscape"){
			top.outerWidth = w;
			top.outerHeight = h;
		}else{
		   top.resizeTo(w, h);
	   }
	}
}
-->