// mredkj.com
// 2006-07-21
function insertRowPHP()
{
	var tbl = document.getElementById('tblInsertRowPHP');
	var iteration = tbl.tBodies[0].rows.length;
	newRow = tbl.tBodies[0].insertRow(-1);
	var newCell = newRow.insertCell(0);
	newCell.innerHTML = 'row ' + iteration;
	var newCell1 = newRow.insertCell(1);
	var el = document.createElement('input');
	el.type = 'text';
	el.name = 'txtRow[]';
	el.id = 'txtRow' + iteration;
	el.size = 40;
	newCell1.appendChild(el);
}
function deleteAllRows(tblId)
{
	var tbl = document.getElementById(tblId);
	for (var i=tbl.tBodies[0].rows.length-1; i>=0; i--) {
		tbl.tBodies[0].deleteRow(i);
	}
}
