function isdefined(foo) {
	if(typeof(foo) !="undefined")
		return true;
	else
		return false;
}
