
<!--

var farbe='#FFFF00';

function farbwechselIn(obj)
{		     
    if(farbe =="")farbe = "yellow";
    document.getElementById(obj.id).style.backgroundColor=farbe;	      
}
function fabwechselOut(obj)
{             
    document.getElementById(obj.id).style.backgroundColor="";	
}
function onDelete()
{
	var chk = window.confirm("are you sure you want delete this item ?");
	return (chk);
}
-->

