function changeCell(objCell,strClassName)
         {
         //objCell.style.backgroundColor = fState ? '#F0CA21' : '#F6E396';
         objCell.setAttribute('class', strClassName);
         objCell.className=strClassName;
         }

// Ersetzt die Funktion changeCell
function changeCellColor(object, color)
	{
	if(document.getElementById)	document.getElementById(object).style.backgroundColor=color;
	else if(document.all) document.all.item(object).style.backgroundColor=color;
	else if(document.layers) document.layers[object].bgColor=color;
	}
				 
function bcinplace_field(strDBName,strTableName,strFieldName,strID)
		{
		alert("D: " + strDBName + " T: " + strTableName + " F: " + strFieldName + " ID: " + strID);
		}

function addToBillingAddress(strFormName,strSourceControl,strTargetControl)
	{
	var objSource = eval(strFormName + '.' + strSourceControl);
	var objTarget = eval(strFormName + '.' + strTargetControl);
	
	if(objSource != null && objTarget != null && objTarget.value == '')
		{
		objTarget.value = objSource.value;
		}
	}
		
