function chgDisp(img, txt, frmd, wth) {
	var optList = new Array('img', 'txt', 'frmd');
	for (var i = 0; i < optList.length; i++) {
			eval(getEl[0] + optList[i] + getEl[1]).checked = eval(optList[i]);
	}
	
	eval(getEl[0] + "widthSet" + getEl[1]).value=wth;
}
function showOptions(lnk) {
	var text = new Array("show advanced", "hide advanced");
	var shwn = 0;
	if(eval(getEl[0] + "options" + getEl[1] + style).visibility == status[0]) {
		shwn = 1;
	}
	eval(getEl[0] + "advOpt" + getEl[1]).innerHTML = text[shwn];
	
	eval(getEl[0] + "options" + getEl[1] + style).visibility = status[shwn];
	if (display) {
		eval(getEl[0] + "options" + getEl[1] + style).display = row_status[shwn];
	}
}