
	

function getobjkey(obj,key,def)
{
 if(typeof def =='undefined') def=false;
 if(typeof obj[key] =='undefined') return def;
 return obj[key];
}


