<!--
function loadWindow(address_str,width,height) {
	if(!width){
		width = 550;
	}
	if(!height){
		height = 400;
	}
	if(window.open('', 'helpwin', 'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width='+width+',height='+height))
		return true;
	else return false;
}

//-->
