function setStatus(strStatus) {if(!strStatus) strStatus = "";window.status = strStatus;return true;}
function acc_popup(strURL, x, y, strName, blnRetVal) {
	var strAttr = "scrollbars=yes,WIDTH=" + x + ",HEIGHT=" + y + ",resizable=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,copyhistory=no";
	if(!strName) strName = "usWin";
	var popupref = window.open(strURL, strName.replace(" ","_"), strAttr);
	popupref.focus();
	return false;
}

function inc_popup( strURL, intW, intH, strName ) 
	{
		popup( strURL, intW, intH, strName );
		return false;
	}
